Commit 4c04a6e0 by BellCodeEditor

save project

parent 388cc2ce
Showing with 8 additions and 6 deletions
...@@ -12,13 +12,15 @@ turtle.done() ...@@ -12,13 +12,15 @@ turtle.done()
''' '''
# import turtle
# pen= turtle.Pen()
# pen.write('你好啊!',font=('Times',25,'normal'))
# turtle.done()
import turtle import turtle
pen = turtle.Pen() pen= turtle.Pen()
screen = turtle.Screen()
screen.bgcolor('light green')
pen.penup()
pen.goto(100,-100)
pen.write('你好啊!',font=('Times',25,'normal'))
pen.goto(0,0)
pen.pendown()
pen.pencolor('red') pen.pencolor('red')
pen.pensize(5) pen.pensize(5)
pen.left(45) 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