Commit e7b85554 by BellCodeEditor

save project

parent 654bc3ba
Showing with 82 additions and 0 deletions
import turtle
p=turtle.Pen()
p.write("一人得道鸡犬升天",font=("Times",20,"normal"))
turtle.done()
for i in range(1):
p.circle(22)
p.left(1)
import turtle
p=turtle.Pen()
s=turtle.Screen()
s.bgcolor("skyblue")
p.fillcolor("orange")
for i in range(11111):
p.begin_fill()
p.pencolor("blue")
p.pensize(5)
p.speed(0)
p.left(i)
p.fd(100)
p.circle(i,180)
p.rt(90)
p.circle(50,180)
p.fd(100)
p.end_fill()
i=turtle.Pen()
#i.write("一人得道鸡犬升天",font=("Times",20,"normal"))
i.penup()
i.goto(100,101)
i.write("一人得道鸡犬升天",font=("Times",20,"normal"))
turtle.done()
# 利用write()帮助悟空给诺依回信吧~
import turtle
pen=turtle.Pen()
pen.write("空给诺依回信吧",font=("Times",12,"normal"))
pen.hideturtle()
turtle.done()
\ No newline at end of file
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