Commit 89a70483 by BellCodeEditor

save project

parent 62e5ac59
Showing with 14 additions and 6 deletions
import=turtle import turtle
screen=turtle.Screen screen=turtle.Screen()
screen.bgcoior("red") screen.bgcolor("light blue")
pen=turtle.Pen pen=turtle.Pen()
pen.penup() pen.penup()
pen.goto(-100,100) pen.goto(-100,100)
pen.pendown() pen.pendown()
pen.write("你好\nSB",font=("Times",80,"normal")) pen.write("你好",font=("Times",20,"normal"))
pen.hideturtle() pen.hideturtle()
turtle.done turtle.done()
len=100
pen.left(45)
pen.forward(2*len)
pen.circle(len,180)
pen.right(90)
pen.circle(len,100)
pen.forward(2*len)
\ 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