使用当前代码this is the result。
但是我试图让它看起来like this,但不知道要调整什么。
#circle circle
import turtle
turtle.colormode(255)
window=turtle.Screen()
draw=turtle.Turtle()
draw.pensize(2)
window.screensize(1200,1200)
draw.speed('fastest')
red, green, blue= 255, 255, 0
for shape in range(30):
for circle in range(1):
draw.circle(200)
draw.penup()
draw.forward(30)
draw.pendown()
draw.left(20)
green=green-5
blue=blue+6
draw.color(red, green, blue)
window.mainloop()
答案 0 :(得分:0)
如果您注意到两张图片,那么您想要的图像会在中心外面绘制圆圈,而错误的图像会围绕中心绘制。尝试将draw.left(20)
更改为draw.right(20)
并从那里调整您的值以获得所需的尺寸。
这种改变使乌龟保持在刚绘制的圆圈之外,这就是你要找的东西。