jianghongz 发表于 2022-8-18 09:02:53

海龟画图 春联绘制

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()

18975173112 发表于 2023-5-17 09:33:44

看不懂啊
页: [1]
查看完整版本: 海龟画图 春联绘制