Commit 98698ba5 by BellCodeEditor

save project

parent b5c6bbbe
Showing with 20 additions and 0 deletions
# 玩家出拳
SB = input("******")
if SB !=("q" or "w" or "e"):
input("nonononon!")
print(SB)
import random
list = ["q","w","e"]
sb = random.choice(list)
if SB==sb:
print("平")
elif SB=="q" and sb=="w":
print("win")
elif SB=="w" and sb=="e":
print("win")
elif SB=="e" and sb=="q":
print("win")
else :
print("输")
\ 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