画太极图
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()
效果图
网友评论