Python3石头剪刀布小游戏

一个简单的python石头剪刀布小游戏

导入 random包 和 time包
random.choice :从序列中获取一个随机元素
time.sleep :设定循环睡眠时间(秒)

import random
import time
while True:
    player = input('请输入要出的拳 石头/剪刀/布:')
    if player not in ['石头','剪刀','布']:
        print('请输入正确的手势')
        continue
    computer = random.choice(['布','石头','剪刀'])
    print('玩家出的拳是: %s' % player)
    print('电脑出的拳是: %s' % computer)
    if player == '石头' and computer == '剪刀':
        print('玩家胜利')
    elif player == '剪刀' and computer == '布':
        print('玩家胜利')
    elif player == '布' and computer == '石头':
        print('玩家胜利')
    elif player == computer:
        print('平局')
    else:
        print('电脑胜利')
    time.sleep(2)

你可能感兴趣的:(Python3石头剪刀布小游戏)