所以基本上,我正在尝试创建一个游戏。到目前为止它还好!但是,我试图弄清楚如何让代码回归。我是python的初学者,所以我认为它与def start():和start():或者某些东西有关,但是我不确定。 如果你不知道我在说什么,我基本上说我想要的东西是:
(1) if (variable) == (whatever)
(2) print ("Cool you win")
(4) (code to go back and repeat line 1)
(5) else:
(6) print ("You loose!")
(7) (code to go back and repeat line 1)
所以基本上就像一个循环。那么,我该怎么做呢?
答案 0 :(得分:0)
您想使用while循环
while <condition>:
(1) if (variable == whatever):
(2) print ("Cool you win")
(4) #nothing needed here
(5) else:
(6) print ("You loose!")
(7) #nothing needed here
如果您没有特定条件,可以使用while True:
永久循环