Commit f3c78762 by BellCodeEditor

auto save

parent 87472c02
Showing with 712 additions and 3 deletions
name=input("请输入你的名字")
print(name+",你好啊!")
\ No newline at end of file
#玩家出拳
name=input("石头/剪刀/布")
print("玩家出的是"+name)
#计算机出拳
import random
list=["石头","剪刀","布"]
a=random.choice(list)
print("计算机出的是:"+a)
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