回到主页

python自定义函数

broken image
broken image
broken image
broken image
broken image
broken image

2024青科赛GOC河南3-4年级组

小C刚学会goc时最喜欢画汉字,请你帮忙使用GoC编程绘制个“王”字的如下图形。

颜色为黑色(0号色),笔粗为20;

注:红色部分为线段长度表示,不用画出;

broken image

 import turtle as p

def hx(cd):

p.fd(cd/2)

p.bk(cd)

p.fd(cd/2)

p.rt(90)

p.pensize(20)

hx(100)

p.fd(50)

p.lt(90)

hx(75)

p.fd(50)

p.lt(90)

hx(120)

p.done()