Commit a486725b by BellCodeEditor

save project

parent 2e27d07f
Showing with 15 additions and 8 deletions
import turtle import turtle
screen=turtle.Screen()
screen.bgcolor("light blue")
pen=turtle.Pen() pen=turtle.Pen()
pen.left(45) pen.write("你好\nname\nvv.",font=("Times",30,"normal"))
pen.forward(10) pen1=turtle.Pen()
pen.circle(5,180) pen1.penup()
pen.right(90) pen1.goto(-100,100)
pen.circle(5,180) pen1.pendown()
pen.forward(10) pen1.left(45)
pen.done() pen1.forward(10)
\ No newline at end of file pen1.circle(5,180)
pen1.right(90)
pen1.circle(5,180)
pen1.forward(10)
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