8 lines
86 B
Python
8 lines
86 B
Python
import turtle
|
|
|
|
t=turtle.Turtle()
|
|
|
|
|
|
for _ in range(360):
|
|
t.forward(1)
|
|
t.left(1) |