|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
import turtle as t
t.penup()
t.goto(-150,200)
t.pendown()
t.color("red")
t.begin_fill()
for i in range(2):
t.fd(50)
t.right(90)
t.fd(400)
t.right(90)
t.end_fill()
t.color("black")
t.penup()
t.goto(-150,-200)
t.pendown()
t.write("一\n行\n白\n鹭\n上\n青\n天",font=("华文行楷",40))
t.penup()
t.goto(100,200)
t.pendown()
t.color("red")
t.begin_fill()
for i in range(2):
t.fd(50)
t.right(90)
t.fd(400)
t.right(90)
t.end_fill()
t.color("black")
t.penup()
t.goto(100,-200)
t.pendown()
t.write("两\n个\n黄\n鹂\n鸣\n翠\n柳",font=("华文行楷",40))
t.penup()
t.goto(-100,300)
t.pendown()
t.color("red")
t.begin_fill()
for i in range(2):
t.fd(200)
t.right(90)
t.fd(50)
t.right(90)
t.end_fill()
t.color("black")
t.penup()
t.goto(-100,240)
t.pendown()
t.write("执子天涯",font=("华文行楷",40))
t.hideturtle()
|
|