笨办法学python习题 41: 来自 Percal 25 号行
一个无厘头的游戏。
一点一点看下去就能看懂了。
从random模块中引入了randint方法。
random.randint()随机生一个整数int类型,可以指定这个整数的范围,同样有上限和下限值,python random.randint
ROOMS = {
'death': death,
'central_corridor': central_corridor,
'laser_weapon_armory': laser_weapon_armory,
'the_bridge': the_bridge,
'escape_pod': escape_pod}#定义一个字典rooms
def runner(map, start):#创建一个函数runner(),并传入两个参数map和start
next = start #在函数中创建一个新的变量next,将start的值赋予next
while True: #创建一个无限循环
room = map[next] #令map[next]等于新建变量room
print
"\n--------"
next = room() #该行等同于next=map[next](),于是执行新的函数
runner(ROOMS, 'central_corridor')
1.解释一下返回至下一个房间的工作原理。
runner()函数里有一个无线循环while,当其他函数return对应的数值后,next=return" ",room=map[''],进而继续令next=map'',调用新的函数。
2.创建更多的房间,让游戏规模变大。
将return 'death '改成其他返回值,并用返回值创建新的函数就可以增加更多的房间
3.除了让每个函数打印自己以外,再学习一下“文档字符串(doc strings)”式的注解。看看你能不能将房间描述写成文档注解,然后修改运行它的代码,让它把文档注解打印出来。
def printMax(x, y):
'''Prints the maxinum of two numbers
The two values must be integers.'''
x = int(x) # convert to integers, if possible
y = int(y)
if x > y:
print x, 'is maxinum'
else:
print y, 'is maxinum'
printMax(3, 5)
print printMax.__doc__
输出:
$python func_doc.py
5 is maxinum
Prints the maxinum of two numbers
The two values must be integers.
它是如何工作的:
函数的第一个逻辑行的字符串是那个函数的文档字符串。注意,文档字符串也适用于在各自 的章节将要学习的模块和(类)(#面向对象的程序设计)。
文档的以贯例是多行字符串,第一行以大写字母开头以句点(.)结束(注:中文在V3.3中也可以),第二行是空行,从第三行开始是详细描述。强烈建议,为你重要的函数写文档字符串要遵循此贯例。
我们可以使用函数的doc(注意,双下划线)属性(属于名字的)访问printMax函数的文档字符串。只要记住,Python把一切任何事情作为一个对象对待,这也包括函数。我们将在类这一章学习关于对象的更多知识。
如果你在Python中已经使用过help(),那么你已经看到如何使用文档字符串了!它所做的仅仅是获取函数的 doc 属性,并以一个整洁的方式显示给你。你可以在上面的函数——在你的程序中仅包括help(printMax)尝试一下。记得按下q键,退出help。
自动化工具可以从你的程序中以这种方式检索文档。因此,我强烈建议,为你写的任何重要函数使用文档字符串。来自Python的自动化工具pydoc命令使用文档字符串的工作原理类似于help()。
4.一旦你用了文档注解作为房间描述,你还需要让这个函数打印出用户提示吗?试着让运行函数的代码打出用户提示来,然后将用户输入传递到各个函数。你的函数应该只是一些 if 语句组合,将结果打印出来,并且返回下一个房间。
def central_corridor():
'''Print some imformation about the game
The Gothons of Planet Percal #25 have invaded your ship and destroyed
your entire crew You are the last surviving member and your last
mission is to get the neutron destruct bomb from the Weapons Armory,
put it in the bridge, and blow the ship up after getting into an
escape pod\n
You're running down the central corridor to the Weapons Armory when
a Gothon jumps out, red scaly skin, dark grimy teeth, and evil clown costume
flowing around his hate filled body He's blocking the door to the
Armory and about to pull a weapon to blast you.'''
print central_corridor.__doc__
5.这其实是一个小版本的“有限状态机(finite state machine)”,找资料阅读了解一下,虽然你可能看不懂,但还是找来看看吧。
我的代码里有一个 bug,为什么门锁要猜测 11 次?
因为gusses=9时已经对门锁猜测了10次,但此时依然能进入循环,gusses+1=10后,依然需要输入新的数