17-简化后的石头剪刀布

去掉重复的代码,结果输出字体增加颜色。

import random
all_choice = ['石头','剪刀','']
win_list = [['石头','剪刀'],['剪刀',''],['','石头']]
prompt = '''(0) 石头
(1) 剪刀
(2) 布
请选择(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')

输出:

 


posted @ 2019-05-14 09:58  hejp  阅读(166)  评论(0编辑  收藏  举报