Commit c8469347 by BellCodeEditor

save project

parent e125b3c6
Showing with 14 additions and 4 deletions
person = input("玩家请出拳!(剪刀,石头,布)")
print("玩家出拳" + person)
import random
list = ["剪刀","石头","布"]
computer = random.choice(list)
print("电脑出" + computer)
\ No newline at end of file
# 玩家出拳 person = input("玩家请出拳!(剪刀,石头,布)")
plager = input("玩家请出拳(剪刀 石头 布)") print("玩家出拳" + person)
print("玩家出" + plager) import random
\ No newline at end of file list = ["剪刀","石头","布"]
computer = random.choice(list)
print("电脑出" + computer)
\ 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