Commit 14a38fba by BellCodeEditor

auto save

parent a8392f66
Showing with 18 additions and 7 deletions
"""
请使用turtle模块画出五角星
"""
import turtle
open=turtle.pen()
For i in range(5)
pen.forward(200)
pen.right(144)
pen.hideturtle()
pen.done()
import random
while True:
list=["剪刀","石头","布"]
player=input("玩家出拳(石头/剪刀/布):")
computer=random.choice(list)
print("玩家出拳是:"+ player)
print("计算机出拳是:"+ computer)
if player == computer:
print("平局")
elif player=="石头" and computer=="剪刀":
print("玩家胜利")
elif player=="剪刀" and computer=="布":
print("玩家胜利")
elif player=="布" and computer=="石头":
print("玩家胜利")
else:
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