赞
踩
1 问题
怎么用Python实现石头、剪刀、布的游戏。
2 方法
用 input() 接收用户输入,使用 while 循环连续玩几个游戏,用 Enum 和函数简化代码,用字典定义更复杂的规则。
代码清单
import random
win_times = 0
while win_times <= 2:
player = input('请输入:
剪刀(0) 石头(1) 布(2):')
player = int(player)
computer = random.randint(0,2)
if ((player == 0) and (computer == 2)) or ((player ==1) and (computer == 0)) or ((player == 2) and (computer == 1)):
win_times += 1
print('获胜,哈哈,你太厉害了')
elif player == computer:
print('平局,要不再来一局')
else:
print('输了,不要走,洗洗手接着来,决战到天亮')
3 结语
random模块完成从列表中随机选取石头、剪刀、布。if条件判断语句用于判断胜负,for循环用于多次判断。创建两个变量分别对玩家和电脑计分,最后用if语句对总分做判断。总体来说都是学过的知识,唯一没学过的用random模块从列表中随机选取元素。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。