Commit 9325d854 by BellCodeEditor

auto save

parent b84579fd
Showing with 43 additions and 0 deletions
import turtle
screen=turtle.Screen()
screen.bgcolor("light blue")
pen=turtle.Pen()
pen.penup()
pen.goto(-100,0)
pen.write("祝你生日快乐!"font=("Times",30,"normal"))
pen.hideturtle()
turtle.done()
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.pensize(5)
pen.circle(50)
pen.penup()
pen.hideturtle()
pen1=turtle.Pen()
pen.penup()
pen1.goto(110,100)
pen1.pencolor("blue")
pen1.pensize(5)
pen1.circle(50)
pen1.hideturtle()
turtle.done()
import turtle
pen=turtle.Pen()
for i in range(10)
pen.left(45)
pen.forward(100)
pen.left(90)
pen.circle(50,180)
pen.left(90)
pen.circle(50,180)
pen.left(90)
pen.forward(100)
pen.hideturtle()
turtle.done()
\ No newline at end of file
user
\ 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