设为首页 加入收藏

TOP

用Python实现一个简单的算术游戏
2014-11-24 08:45:05 来源: 作者: 【 】 浏览:0
Tags:Python 实现 一个 简单 算术 游戏

用Python实现一个简单的算术游戏:


#!/usr/bin/env python


from operator import add, sub
from random import randint, choice


ops = {'+': add, '-':sub}
#定义一个字典
MAXTRIES = 2


def doprob():
op = choice('+-')
#用choice从'+-'中随意选择操作符
  nums = [randint(1,10) for i in range(2)]
#用randint(1,10)随机生成一个1到10的数,随机两次使用range(2)
 nums.sort(reverse=True)
#按升序排序
  ans = ops[op](*nums)
#利用函数
 pr = '%d %s %d = ' % (nums[0], op, nums[1])
oops = 0
#oops用来计算failure测试,当三次时自动给出答案
while True:
try:
if int(raw_input(pr)) == ans:
print 'correct'
break
if oops == MAXTRIES:
print 'answer\n %s%d' % (pr, ans)
break
else:
print 'incorrect... try again'
oops += 1
except (KeyboardInterrupt, EOFError, ValueError):
print 'invalid ipnut... try again'
def main():
while True:
doprob()
try:
opt = raw_input('Again [y]').lower()
if opt and opt[0] == 'n':
break
except (KeyboardInterrupt, EOFError):
break


if __name__ == '__main__':
main()


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇交叉编译Linux内核 下一篇用Python实现求最大公约数和判断..

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·有没有哪些高效的c++ (2025-12-27 08:20:57)
·Socket 编程时 Accep (2025-12-27 08:20:54)
·计算机网络知识点总 (2025-12-27 08:20:52)
·一篇说人话的文章, (2025-12-27 07:50:09)
·Python Web框架哪家 (2025-12-27 07:50:06)