Commit a2ccc68e by BellCodeEditor

save project

parent 40aab365
Showing with 5 additions and 3 deletions
# 玩家出拳
import random
player=input("请输入你想出什么")
print("玩家出的是:"+player)
list=["石头","剪刀","布"]
letter=random.choice(list)
print(letter)
\ No newline at end of file
computer=random.choice(list)
print("电脑出的是:"+computer)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment