오륜기: 올림픽의 상진으로 아래와 같은 모양입니다. 파이썬 코드 import turtle t = turtle.Turtle() radius = 50 t.pensize(10) x=[-110, 0, 110, -55, 55] y = [-25, -25, -25, -75, -75] c = ["blue", "black", "red", "yellow", "green" ] for i in range(0, 6): t.color(c[i]) t.penup() t.goto(x[i], y[i]) t.pendown() t.circle(radius)