码迷,mamicode.com
首页 > 编程语言 > 详细

Python小游戏—每次运行程序,答案是随记,如何实现?

时间:2017-10-10 00:04:20      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:inpu   pre   模块   print   random   实现   else   big   引用   

1.需要引入random模块,引用函数randint(),这个函数返回一个随记的整数

2.用and逻辑运算符比较

代码如下:

import random
secret = random.randint(1,10)
count = 1
temp = input("猜数字:")
guess = int(temp)
while guess != secret and count < 3:
if guess > secret:
print("too big")
else:
print("too small")
temp = input("try again:")
guess = int(temp)
count +=1
if guess ==secret:
print("对了")
print("game over")
print("游戏结束")

Python小游戏—每次运行程序,答案是随记,如何实现?

标签:inpu   pre   模块   print   random   实现   else   big   引用   

原文地址:http://www.cnblogs.com/MonkeyTesting/p/7643371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!