Python绘制太极图
废话不多说,上代码:import turtle as t
t.bgcolor("white")
t.color("black")
# t.tracer(0)
t.speed(0)
t.pensize(1)
t.penup()
t.left(90)
t.fd(100)
t.left(90)
t.pendown()
t.begin_fill()# 开始填充
t.circle(50, -180)
t.circle(-50, -180)
t.circle(-100, 180)
t.end_fill()# 填充颜色完毕
t.circle(-100, 180)
t.penup()
t.right(90)
t.fd(50)
t.pendown()
t.dot(25, "black")
t.penup()
t.fd(100)
t.pendown()
t.dot(25, "white")
t.penup()
t.fd(50)
t.pendown()
t.right(90)
t.begin_fill()
t.circle(-100, 180)
t.left(90)
t.fd(300)
t.left(90)
t.fd(400)
t.left(90)
t.fd(800)
t.left(90)
t.fd(400)
t.left(90)
t.fd(300)
t.end_fill()
t.hideturtle()
t.done()
这里用的是基本的turtle库
最后,希望各位鱼油给我评个分吧!!!
页:
[1]