Commit a52a9870 by BellCodeEditor

save project

parent 76cc3d10
Showing with 134 additions and 14 deletions
import turtle import turtle
screen=turtle.Screen() screen=turtle.Screen()
turtle.bgcolor("pink") screen.bgcolor("light green")
x=turtle.Pen() x=turtle.Pen()
x.penup() x.penup()
x.goto(100,-100) x.goto(100,-100)
x.write("葡萄美酒夜光杯,\n你是一个大傻杯",font=("Times",13,"normal")) x.write("葡萄美酒夜光杯,\n你是一个大傻杯。",font=("Times",13,"normal"))
x.hideturtle()
a=turtle.Pen()
a.pencolor("red")
a.pensize(5)
a.left(45)
a.forward(100)
a.circle(50,180)
a.right(90)
a.circle(50,180)
a.forward(100)
a.hideturtle()
turtle.done() turtle.done()
t=turtle.Pen()
t.pencolor("red")
t.pensize(5)
t.left(45)
t.forward(100)
t.circle(50,180)
t.right(90)
t.circle(50,180)
t.forward(100)
t.hideturtle()
t.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