Commit d8a55e31 by BellCodeEditor

save project

parent c8e37af6
Showing with 7 additions and 4 deletions
...@@ -3,10 +3,13 @@ print("已出,"playing) ...@@ -3,10 +3,13 @@ print("已出,"playing)
import random import random
list=("石头""剪刀""布") list=("石头""剪刀""布")
computer=random.choice(list) computer=random.choice(list)
print("OK"+computer) print(computer)
if playing==computer: if playing==computer:
print("平局!") print("平局")
elif playing=="石头"computer=="布" elif:( playing=="石头"and computer=="剪刀")(or playing=="剪刀"and computer=="布")(playing=="布"and computer=="石头"):
print("赢了")
else:
print("没了")
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