Commit 03262e08 by BellCodeEditor

save project

parent 23dfff73
Showing with 18 additions and 0 deletions
import random
list = ["石头","剪刀","布"]
player = input("你要出什么:")
print("玩家出"+player)
robot = random.choice(list)
print("电脑出"+robot)
if player==robot:
print("平局")
elif (player == "石头" and robot == "剪刀")or(player == "剪刀" and robot == "布")or(player == "布" and robot == "石头"):
print("玩家胜利")
else:
print("电脑胜利")
\ No newline at end of file
import random
dzb = "hdsjfh"
muck = random.choice(dzb)
print(muck)
\ 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