diy1.py 124 Bytes Edit 1 2 3 4 5 # 玩家出拳 import random list=["剪刀","石头","布"] computer=random.choice(list) print("电脑出拳:"+computer)