Commit 9a1b961a by BellCodeEditor

save project

parent 2de1efcd
Showing with 7 additions and 1 deletions
import turtle import turtle
pen = turtle.Pen() pen = turtle.Pen()
screen = turtle.Screen()
screen.bgcolor("light blue")
pen.pensize(3) pen.pensize(3)
pen.pencolor("blue") pen.pencolor("blue")
pen.write("你好呀\n!",font=("Times",20,"normal")) pen.penup()
pen.goto(-100,-100)
pen.write("你好呀!\nhaha",font=("Times",20,"normal"))
pen.goto(0,0)
pen.pendown()
pen.pensize(5) pen.pensize(5)
pen.pencolor("red") pen.pencolor("red")
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