运行这个程序,会有惊喜。
from turtle import * speed(0) a = int(input("请输入你想要的圆圈个数:")) for i in range(a): circle(150) right(360 / a)
运行效果(部分):