Commit 529a492b by BellCodeEditor

auto save

parent 23dfff73
Showing with 12 additions and 0 deletions
abc = input("你出啥(s/j/b)s=石头 j=剪刀 b=布")
print("你的选择是"+ abc)
import random
list = ["石头","剪子","布"]
computer = random.choice(list)
print("电脑出的是" + computer)
\ No newline at end of file
abc = input("你出啥(s/j/b)s=石头 j=剪刀 b=布")
print("你的选择是"+ abc)
import random
computer = list("石头""剪子""布")
\ No newline at end of file
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