大家都是艺术家,一起来画画吧!
Python下载地址:Python3.9.2下载-其它文档类资源-CSDN下载
#太极
import turtle as t
t.speed(1)
t.color('black')
t.begin_fill()
t.circle(100,180)
t.circle(50,180)
t.circle(-50,180)
t.end_fill()
t.circle(-100,180)
t.right(90)
t.penup()
t.forward(150)
t.pendown()
t.right(90)
t.color('black')
t.begin_fill()
t.circle(15)
t.end_fill()
t.right(90)
t.penup()
t.forward(95)
t.right(90)
t.forward(5)
t.color('white')
t.begin_fill()
t.circle(15)
t.end_fill()
t.hideturtle()



