Commit 4cf31cfb by BellCodeEditor

save project

parent c816b9b8
Showing with 599 additions and 0 deletions
import turtle
t=turtle.Pen()
t.pencolor("yellow")
t.pensize(1)
t.circle(60)
t.write("孙泽琪我拿\nwfsrgvwsr\ngwesthgr",font=("宋体",40,"italic"))
t.hideturtle()
turtle.done()
import turtle
d=turtle.Screen()
d.bgcolor("light yellow")
s=turtle.Pen()
s.pencolor("red")
s.fillcolor("red")
s.begin_fill()
s.left(45)
s.forward(100)
s.circle(50,180)
s.right(90)
s.circle(50,180)
s.forward(100)
s.end_fill()
s.penup()
s.goto(150,-99)
s.write("e\nr\nt",font=("宋体",50,"normal"))
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