Commit ba6cc627 by BellCodeEditor

save project

parent e40efab8
Showing with 8 additions and 5 deletions
...@@ -4,10 +4,13 @@ list = ["石头","剪刀","布"] ...@@ -4,10 +4,13 @@ list = ["石头","剪刀","布"]
cmputer = random.choice(list) cmputer = random.choice(list)
print("玩家出拳:"+player) print("玩家出拳:"+player)
print("计算机出拳:"+cmputer) print("计算机出拳:"+cmputer)
if player == cmputer :
if player in list:
if player == cmputer :
print("平局") print("平局")
elif (player =="石头"and cmputer == "剪刀" ) or (player=="布"and cmputer=="石头") or (player== "剪刀"and cmputer=="布") : elif (player =="石头"and cmputer == "剪刀" ) or (player=="布"and cmputer=="石头") or (player== "剪刀"and cmputer=="布") :
print("你赢了") print("你赢了")
else: else:
print("很遗憾,你输了") print("很遗憾,你输了")
else:
\ 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