1
0
Fork 0
python-isn/turtle7.py
2020-01-21 11:29:18 +01:00

8 lines
No EOL
133 B
Python
Executable file

from turtle import *
x=100
color("white")
goto(-1/2*x,-1/2*x)
color("black")
for i in range (36):
circle(80)
left(10)