在python中创建游戏

时间:2012-11-16 09:51:30

标签: python python-2.7 python-3.x while-loop

我想知道如何在游戏中进行一个while循环,在玩家玩过一次游戏之后,用户会询问他们是否想再玩一次。如果用户输入是,则游戏重新启动,但如果他们说不,游戏结束了。

我想请一些例子,如果你可以使用while true布尔方法来解释,因为我很难理解这一点。

2 个答案:

答案 0 :(得分:2)

查看此课程An Introduction to Interactive Programming in Python

  

如果我上这堂课,我会学到什么最酷的事情?

     
    

你将能够用Python构建自己的游戏。

  

答案 1 :(得分:1)

似乎你最大的问题是如何使用while循环并接受循环内的输入。

看看While Loops in Python。将提供有关其工作原理的基本见解。

要抓住您的问题,请分析以下代码。那应该可以让你开始。

print "Type 3 to continue, anything else to quit."
someInput = raw_input()

while someInput == '3':
    print "Thank you for the 3. Very kind of you."
    print "Type 3 to continue, anything else to quit."
    someInput = raw_input()

print "That's not 3, so I'm quitting now."

希望这有帮助。