美文网首页Python 专题
turtle画图实例之 太极图

turtle画图实例之 太极图

作者: 小鱼儿_yzh | 来源:发表于2022-06-10 21:42 被阅读0次
    小鱼儿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()
    
    
    

    效果图

    相关文章

      网友评论

        本文标题:turtle画图实例之 太极图

        本文链接:https://www.haomeiwen.com/subject/mzzumrtx.html