1 # 重复做一件事情
2 # 循环,遍历,迭代
3 # python中循环有两种:while和for
4 #break,循环里面遇到break,循环立即结束
5 #continue,循环里面遇到continue,就结束本次循环,进入下一次循环
6 # 猜数字,随机产生一个数字
7 # 最多猜7次
8 import random
9 num = random.randint(1,100)
10 print(num)
11 for i in range(7):
12 guess = int(input(‘请输入一个数字:‘))
13 if guess == num:
14 print("猜对了,游戏结束")
15 break
16 elif guess > num:
17 print("猜大了,游戏继续")
18 continue
19 else:
20 print("猜小了,游戏继续")
21 continue
22 else:
23 print("猜的次数大于7次,游戏结束")
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did170311