Commit 14a38fba by BellCodeEditor

auto save

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