python turtle 绘制图像

def _circle():
	t = turtle.Turtle()
	t.pencolor("yellow")
	t.pensize(5)
	t.speed(200)
	t.circle(200, steps=100)
	turtle.mainloop()

  

原文地址:https://www.cnblogs.com/chenadong/p/10030914.html