Commit 7d57df90 by BellCodeEditor

save project

parent e6b34210
Showing with 10 additions and 7 deletions
......@@ -6,10 +6,13 @@ asdw=["石","剪","布"]
asdw1=random.choice(asdw)
print(asdw1)
if (playr=="石"and asdw1=="剪") or( playr=="剪"and asdw1=="布") or( playr== "布" and asdw1=="石"):
print("555你赢了")
elif playr==asdw1:
print("平局")
if playr in asdw:
if (playr=="石"and asdw1=="剪") or( playr=="剪"and asdw1=="布") or( playr== "布" and asdw1=="石"):
print("555你赢了")
elif playr==asdw1:
print("平局")
else:
print("hhh你输了")
else:
print("hhh你输了")
\ No newline at end of file
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