按照图片的样子输出,大概有25圈,要求不用def()函数,而用for或者while循环输出
import turtle as t t.speed(0) s=0 for i in range(100): t.fd(s) t.lt(90) s+=3