Python 海龟绘图 100 题——第 22 题
综合应用,使用绘制多边形的方法绘制圆形。
import turtle as t for i in range(0, 360): t.fd(1) t.rt(360/360)