Commit e786edc8 by BellCodeEditor

save project

parent 641754c4
Showing with 3998 additions and 0 deletions
import random
player=input("请出拳:石头/剪刀/布")# 玩家出拳
print("玩家出拳:"+player)
list1 = ["石头","剪刀","布"]
computer = random.choice(list1)
print("电脑出拳:"+computer)