日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python人机猜拳游戏_Python实现剪刀石头布小游戏(与电脑对战)

發布時間:2024/9/19 python 63 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python人机猜拳游戏_Python实现剪刀石头布小游戏(与电脑对战) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

具體代碼如下所述:

srpgame.py

#!/urs/bin/env python

import random

all_choice = ['石頭','剪刀','布']

win_list = [['石頭','剪刀'],['剪刀','布'],['布','石頭']]

prompt = """

(0) 石頭

(1) 剪刀

(2) 布

Please input your choice(0/1/2): """

computer = random.choice(all_choice)

ind = int(input(prompt))

player = all_choice[ind]

print("Your choice: %s,Computer's choice: %s" %(player,computer))

if player == computer:

print('\033[32;1m平局\033[0m')

elif [player,computer] in win_list:

print('\033[31;1mYou WIN!!!\033[0m')

else:

print('\033[31;1mYou LOSE!!!\033[0m')

演示

D:\Python scripts

λ python3 .\srpgame.py

(0) 石頭

(1) 剪刀

(2) 布

Please input your choice(0/1/2): 0

Your choice: 石頭,Computer's choice: 剪刀

You WIN!!!

D:\Python scripts

λ python3 .\srpgame.py

(0) 石頭

(1) 剪刀

(2) 布

Please input your choice(0/1/2): 1

Your choice: 剪刀,Computer's choice: 剪刀

平局

D:\Python scripts

λ python3 .\srpgame.py

(0) 石頭

(1) 剪刀

(2) 布

Please input your choice(0/1/2): 2

Your choice: 布,Computer's choice: 石頭

You WIN!!!

D:\Python scripts

λ python3 .\srpgame.py

(0) 石頭

(1) 剪刀

(2) 布

Please input your choice(0/1/2): 0

Your choice: 石頭,Computer's choice: 布

You LOSE!!!

總結

以上所述是小編給大家介紹的Python實現剪刀石頭布小游戲(與電腦對戰),希望對大家有所幫助!

總結

以上是生活随笔為你收集整理的python人机猜拳游戏_Python实现剪刀石头布小游戏(与电脑对战)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。