博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
吃午饭前,按书上的代码写会儿--Hunt the Wumpus第一个版本
阅读量:5783 次
发布时间:2019-06-18

本文共 962 字,大约阅读时间需要 3 分钟。

有空就要慢慢练起~~~~脑袋动起来是很快乐的事儿。。。。:)

《易学PYTHON》演练一遍。

from random import choicecave_numbers = range(1,21)wumpus_location = choice(cave_numbers)player_location = choice(cave_numbers)while player_location == wumpus_location:    player_location = choice(cave_numbers)print "Welcome to Hunt the Wumpus!"print "You can see ", len(cave_numbers), "caves"print "To play, just type the number"print "of the cave you wish to enter next"while True:    print "You are in cave ", player_location    if (player_location == wumpus_location - 1 or        player_location == wumpus_location + 1):        print "I smell a wumpus!"    print "Which cave next?"    player_input = raw_input(">")    if (not player_input.isdigit() or        int(player_input) not in cave_numbers):        print player_input, "is not a cave!"    else:        player_location = int(player_input)        if player_location == wumpus_location:            print "Aargh! you got eaten by a wumpus!"            break

转载地址:http://tuvyx.baihongyu.com/

你可能感兴趣的文章
手把手教你测——上网快鸟
查看>>
用javascript获取地址栏参数
查看>>
一起谈.NET技术,你应该知道的15个Silverlight诀窍
查看>>
商教助手!解析夏普液晶高清宽屏投影机系列
查看>>
云南去年有望实现151万贫困人口净脱贫
查看>>
Java架构师面试题系列整理(大全)
查看>>
延伸产业链 中国产粮大省向“精深”问发展
查看>>
消费贷用户70%月收入低于5000元 80、90后是主要人群
查看>>
2018年内蒙古外贸首次突破1000亿元
查看>>
CTOR有助于BCH石墨烯技术更上一层楼
查看>>
被遗忘的CSS
查看>>
Webpack中的sourcemap以及如何在生产和开发环境中合理的设置sourcemap的类型
查看>>
做完小程序项目、老板给我加了6k薪资~
查看>>
java工程师linux命令,这篇文章就够了
查看>>
关于React生命周期的学习
查看>>
webpack雪碧图生成
查看>>
搭建智能合约开发环境Remix IDE及使用
查看>>
Spring Cloud构建微服务架构—服务消费基础
查看>>
RAC实践采坑指北
查看>>
runtime运行时 isa指针 SEL方法选择器 IMP函数指针 Method方法 runtime消息机制 runtime的使用...
查看>>