Commit 70ce19d9 by BellCodeEditor

auto save

parent 654bc3ba
Showing with 22 additions and 0 deletions
import turtle
s=turtle.Screen()
s.bgcolor("blue")
pen=turtle.Pen()
pen.penup()
pen.goto(100,-100)
pen.write("Hi,~\n用python写电子贺卡真是太有趣啦~\n我也喜欢python~\n——悟空 ",font=("Times",18,"normal"))
pen.hideturtle()
t=turtle.Pen()
t.pencolor("red")
t.fillcolor("red")
t.pensize(5)
t.begin_fill()
t.left(45)
t.forward(200)
t.circle(100,180)
t.right(90)
t.circle(100,180)
t.forward(200)
t.end_fill()
turtle.done()
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