Commit 94ddf146 by BellCodeEditor

save project

parent 76b9ea53
Showing with 9 additions and 4 deletions
import turtle
# pen=turtle.Pen()
# pen.write("你好\n我也喜欢python\n——悟空",font=("Time",20,"normal"))
# pen.hideturtle()
# turtle.done()
pen=turtle.Pen()
screen=turtle.Screen()
screen.bgcolor("blue")
pen.penup()
pen.goto(100,0)
pen.down()
pen.write("你好\n我也喜欢python\n——悟空",font=("Time",10,"normal"))
pen.penup()
pen.goto(0,0)
pen.down()
pen.pensize(5)
pen.pencolor("red")
pen.left(45)
......
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