在我的程序中,我从这开始......
def start():
acu.cont
acu.php
input('Welcome... ( Press Enter )')
acga.Game.game()
start()
这很好,第一次正常启动游戏。当我完成比赛时,我有这个......
again = '1'
print('Play again? ( 1 for yes, 2 for no )')
again = input()
while again == '1':
import Start
Start.start()
else:
print('adios')
raise SystemExit
选择再次播放后,游戏会像正常一样显示欢迎信息,但按Enter键不会执行任何操作。我离开了。
任何想法发生了什么?感谢
答案 0 :(得分:-3)
尝试更改
中的while
while again == '1':
到if
。