用python写一个石头剪刀布
【摘要】
# 石头剪刀布
import random
player = int(input('请出拳:1,2/剪刀,3/布'))
computer = random.randint(1, 3)
if ((playe...
# 石头剪刀布
import random
player = int(input('请出拳:1,2/剪刀,3/布'))
computer = random.randint(1, 3)
if ((player == 1 and computer == 2)
or (player == 2 and computer == 3)
or (player == 3 and computer == 1)):
print('用户胜出~_~')
elif player == computer:
print('好吧,平局@_@')
else:
print('电脑胜出!')
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
文章来源: jiangwenxin.blog.csdn.net,作者:前端江太公,版权归原作者所有,如需转载,请联系作者。
原文链接:jiangwenxin.blog.csdn.net/article/details/121807816
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)