import turtle swidth, sheight = 500,500 #전역 변수 부분 turtle.title('무지개색 원그리기') turtle.shape('turtle') turtle.setup(width=swidth+50, height=sheight+50) turtle.screensize(swidth, sheight) turtle.penup() turtle.goto(5,-sheight/2) for radius in range(1,250): if radius % 6==0: turtle.pencolor('red') elif radius % 5 ==0: turtle.pencolor('orange') elif radius % 4 ==0: turtle.pencolor('yellow') elif radius..