Commit dfec3efa by BellCodeEditor

save project

parent 62cce869
Showing with 17 additions and 14 deletions
player=input("请出拳:") import turtle
print("玩家出拳:"+player) pen=turtle.Pen()
import random pen.goto(-20,0)
list=["石头","剪刀","布"] pen.pencolor("pink")
computer=random.choice(list) pen.write("马\n\n二",font=("Times",30,"normal"))
print("计算机出拳:"+computer) pen1=turtle.Pen()
#显示结果 pen1.pensize(5)
if player == computer: pen1.pencolor("pink")
print("平局") pen1.left(45)
elif (player=="石头" and computer=="剪刀")or(player=="剪刀" and computer=="布")or(player=="布" and computer=="石头"): pen1.forward(100)
print("恭喜,你赢了") pen1.circle(50,180)
else: pen1.right(90)
print("很遗憾,你输了") pen1.circle(50,180)
\ No newline at end of file pen1.forward(100)
pen1.hideturtle()
turtle.done()
\ 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