python手機版做小遊戲程式碼大全-python簡單小遊戲程式碼 怎麼用Python製作簡單小遊戲...
1、Python猜拳小遊戲程式碼:
2、import random #匯入隨機模組
3、
4、num = 1
5、yin_num = 0
6、shu_num = 0
7、while num <= 3:
8、 if shu_num == 2 or yin_num == 2:
9、 break
10、 user = int(input('請出拳 0(石頭) 1(剪刀) 2(布)'))
11、 if user > 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:
42、 print('小了')
43、 start = people
44、 else:
45、 print('BOOM!!!')
46、 break
47、 print('等待電腦了輸入{}到{}之間的數:'.format(start, end))
48、 time.sleep(1)
49、 com = random.randint(start + 1, end - 1)
50、 print('電腦輸入:{}'.format(com))
51、 if com > bomb:
52、 print('大了')
53、 end = com
54、 elif com < bomb:
55、 print('小了')
56、 start = com
57、 else:
58、 print('BOOM!!!')
59、 break
相關文章
- 怎麼用python寫簡單的遊戲指令碼?Python遊戲指令碼
- Python程式碼實現“FlappyBird”小遊戲PythonAPP遊戲
- python之掃雷小遊戲(附程式碼)Python遊戲
- python-21點小遊戲(簡單版,不需要random函式)Python遊戲random函式
- Python製作太空射擊小遊戲!Python遊戲
- 12歲的少年教你用Python做小遊戲Python遊戲
- 簡單塔防小遊戲遊戲
- 關於Python小遊戲程式Python遊戲
- 用python寫小遊戲,沒有學過python的也會這個打程式碼Python遊戲
- Angularjs製作簡單的路由功能簡單程式碼例項AngularJS路由
- Python魂鬥羅小遊戲原始碼Python遊戲原始碼
- python hex轉ascii轉換Python程式碼的簡單方法PythonASCII
- python開發俄羅斯方塊小遊戲程式碼例項Python遊戲
- 驗證手機號碼程式碼簡單程式碼例項
- 微信小遊戲官方釋出“積木型”創作工具,不用寫程式碼就能做小遊戲遊戲
- 只需一行Python程式碼即可玩20幾款小遊戲Python遊戲
- 簡單的python程式碼實現語音朗讀Python
- 用Python做遊戲有多簡單?Python遊戲
- Python訪問小程式簡單方法程式碼例項詳解Python
- 用Python寫個魂鬥羅,另附30個Python小遊戲原始碼Python遊戲原始碼
- 用Python操作SFTP的簡易程式碼PythonFTP
- Python小遊戲2048Python遊戲
- Android小遊戲——簡單易懂單機人人對戰五子棋原始碼詳解Android遊戲原始碼
- 透過程式碼例項簡單瞭解Python sys模組Python
- 【python】簡單的備份指令碼Python指令碼
- Python Selenium的簡單演示程式Python
- canvas吃豆小遊戲程式碼Canvas遊戲
- canvas小遊戲程式碼例項Canvas遊戲
- 用unity製作簡單的太空遊戲(2)-簡單炮臺Unity遊戲
- 小遊戲的製作遊戲
- 用python實現簡單的線上翻譯程式Python
- 100行Python程式碼實現貪吃蛇小遊戲(超詳細)Python遊戲
- Python Requests簡單運用Python
- 微信吸粉小遊戲怎麼製作?中秋節微信公眾號吸粉小遊戲製作教程遊戲
- 簡單的Python爬蟲 就是這麼簡單Python爬蟲
- python實現簡單猜單詞遊戲Python遊戲
- python簡單遊戲-反彈球Python遊戲
- 使用Python製作一個簡單的刷微博器Python