Commit d854b4e0 by BellCodeEditor

save project

parent a7d0ead7
Showing with 26 additions and 3 deletions
player=input("请出拳:石头/剪刀/布")# 玩家出拳
print("玩家出拳:"+player)
\ No newline at end of file
from turtle import *
fillcolor("red")
up()
goto(100,-100)
shape('turtle')
bgcolor("pink")
write("你好,\n__大壮",font=("Times",30,"normal"))
hideturtle()
pencolor("red")
pensize(8)
l=100
goto(0,0)
down()
begin_fill()
left(45)
forward(l*2)
circle(l,180)
right(90)
circle(l,180)
forward(l*2)
end_fill()
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