python人机猜拳游戏
时间: 2023-09-22 15:11:50 浏览: 76
好的,我可以帮你写一个Python人机猜拳游戏。
以下是代码:
```python
import random
def get_hand():
"""获取手势"""
while True:
hand = input("请输入你的手势(0-石头,1-剪刀,2-布):")
if hand.isdigit() and int(hand) in [0, 1, 2]:
return int(hand)
else:
print("无效的手势,请重新输入!")
while True:
# 人出手势
player_hand = get_hand()
# 机器出手势
com_hand = random.randint(0, 2)
# 输出结果
print("你出了%s,机器出了%s。" %(["石头", "剪刀", "布"][player_hand], ["石头", "剪刀", "布"][com_hand]))
# 判断胜负
if player_hand == com_hand:
print("平局!")
elif player_hand == 0 and com_hand == 1 or player_hand == 1 and com_hand == 2 or player_hand == 2 and com_hand == 0:
print("你赢了!")
else:
print("机器赢了!")
# 询问是否继续
answer = input("是否继续(Y/N):")
if answer.lower() != "y":
break
```
这个游戏是一个简单的人机对战,玩家输入石头、剪刀、布中的一个手势,机器随机选择一个手势,然后判断胜负。玩家可以选择是否继续游戏。
阅读全文