Commit a12c7bcd by BellCodeEditor

save project

parent 940fb281
Showing with 22 additions and 13 deletions
import random import turtle
player=input("玩家请出拳:石头剪刀布") len=60
print("玩家出拳:"+player) pen=turtle.Pen()
list=["石头","剪刀","布"] screen=turtle.Screen()
compuret=random.choice(list) screen.bgcolor("red")
print("电脑出拳:"+compuret) pen.penup()
if player==compuret: pen.goto(100,-100)
print("平局") pen.write("你好老登\nSB\n大傻逼\n你妈",font=("Times",20,"normal"))
elif (player=="石头" and compuret=="剪刀")or(player=="剪刀" and compuret=="布")or(player=="布" and compuret=="石头"):
print(恭喜你赢了) pen1=turtle.Pen()
else: pen1.pencolor("pink")
print(很遗憾你输了) pen1.pensize(20)
\ No newline at end of file pen1.left(45)
pen1.forward(len*2)
pen1.circle(len,180)
pen1.right(90)
pen1.circle(len,180)
pen1.forward(len*2)
pen1.hideturtle()
pen.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