import turtle

t=turtle.Turtle()

t.shape("turtle")


x=50

t.circle(x)


x=x+20

t.up()

t.goto(100.1)

t.down()

t.circle(x)


x=x+20

t.up()

t.goto(200.1)

t.down()

t.circle(x)


같은 문제 인터넷검색하면 변수이름만 다르지 똑같이 했는데 왜 나만 에러가 뜸? 파이썬임