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

14 lines
No EOL
193 B
Python
Executable file

from turtle import *
x=100
g=15
h=90
speed(10)
color("white")
goto(-1/2*x,-1/2*x)
color("black")
for i in range (150):
forward(g)
left(h)
h=h-0.01
g=g+1
mainloop()