Commit 57797479 by BellCodeEditor

save project

parent 5a1fde3e
Showing with 8 additions and 0 deletions
......@@ -4,3 +4,10 @@ list=["石头","剪刀","布"]
import random
compuer = random.choice(list)
print("电脑出"+compuer)
if player == compuer:
print("平局\n")
elif player == "布"and compuer == "石头" or player == "剪刀" \
and computer == "布"or player == "石头" and computer == "剪刀":
print("你赢了\n")
else:
print("你输了\n")
\ 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