Research portable Memory game | Исследовать портируемую игру Память
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

7 个月前
7 个月前
7 个月前
7 个月前
7 个月前
7 个月前
7 个月前
7 个月前
7 个月前
7 个月前
12345678910111213141516171819202122232425262728293031
  1. from cli import *
  2. from cli_test import *
  3. from memory_test import *
  4. from shell import *
  5. import sys
  6. print(memory_test_generateConstPlayfield())
  7. print(memory_test_selectItem_1x())
  8. print(memory_test_selectItem_2x())
  9. print(memory_test_selectItem_3x())
  10. print(memory_test_shouldDeselectMismatchedItems())
  11. print(memory_test_shouldDeselectMismatchedItems_itemTwice())
  12. print(memory_test_shouldDetectVictory())
  13. print(memory_test_shouldHideMatchingItems())
  14. print(cli_test_greetUser())
  15. print(cli_test_showHelp_h())
  16. print(cli_test_showHelp_help())
  17. c = shell_createContext()
  18. c.cCLI = cli_createContext()
  19. c = shell_launch(c)
  20. print(c.output)
  21. for line in sys.stdin:
  22. c.input = line.rstrip()
  23. c = shell_processInput(c)
  24. if c.exit:
  25. break
  26. print(c.output)