Python 专题

turtle画图实例之 太极图

2022-06-10  本文已影响0人  小鱼儿_yzh
小鱼儿Python实例

画太极图

import turtle as t
t.ht()
r =100
t.up()
t.goto(0,-r)
t.down()
t.begin_fill()
t.circle(r,180)
t.circle(r/2,180)
t.rt(180)
t.circle(r/2,-180)
t.end_fill()
t.circle(r,-180)
t.up()
t.goto(0,r/4)
t.down()
t.fillcolor('white')
t.seth(0)
t.begin_fill()
t.circle(r/4)
t.end_fill()
t.up()
t.goto(0,-r/4)
t.down()
t.seth(180)
t.fillcolor('black')
t.begin_fill()
t.circle(r/4)
t.end_fill()



效果图
上一篇下一篇

猜你喜欢

热点阅读