如何让python回到代码中?
所以基本上,我试图创建一个游戏。 到目前为止它一直很好! 但是,我试图弄清楚如何使代码返回。 我是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)
所以基本上就像一个循环。 那么,我该怎么做?
你想使用一个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: