python简单小游戏代码
2024-04-18 12:07:21
1、Python猜拳小游戏代码:
2、import random #导入随机模块
3、
4、num = 1
5、yin_num = 0
6、shu_num = 0
7、while num 2:
12、 print('不能出大于2的值')
13、 else:
14、 data = ['石头', '剪刀', '布']
15、 com = random.randint(0, 2)
16、 print(您出的是{},电脑出的是{}.format(data[user], data[com]))
17、 if user == com:
18、 print('平局')
19、 continue
20、 elif (user == 0 and com == 1) or (user == 1 and com == 2) or (user == 2 and com == 0):
21、 print('你赢了')
22、 yin_num += 1
23、 else:
24、 print('你输了')
25、 shu_num += 1
26、 num += 1
27、Python数字炸弹小游戏代码:
28、import random
29、import time
30、
31、bomb = random.randint(1, 99)
32、print(bomb)
33、start = 0
34、end = 99
35、while 1 == 1:
36、
37、 people = int(input('请输入{}到{}之间的数:'.format(start, end)))
38、 if people > bomb:
39、 print('大了')
40、 end = people
41、 elif people bomb:
52、 print('大了')
53、 end = com
54、 elif com < bomb:
55、 print('小了')
56、 start = com
57、 else:
58、 print('BOOM!!!')
59、 break
- 上一篇:圣安地列斯手机版怎么跳过任务
- 下一篇:电脑上好玩的单机游戏
猜你喜欢
-
冰牛奶可以放微波炉吗
阅读量:58 -
碳烧烤怎么烤才好吃又香
阅读量:54 -
真空包装可以直接放微波炉吗
阅读量:60 -
蛋挞用微波炉怎么烤才好吃
阅读量:46 -
鸡蛋蒸海参做法
阅读量:12 -
淸蒸带鱼的做法
阅读量:72 -
芋头蒸腊肉的做法
阅读量:84 -
烤板栗怎么做才好吃
阅读量:20 -
蒸深海鱼的做法
阅读量:92 -
自制蒸米粉的做法
阅读量:68