14 lines
No EOL
193 B
Python
Executable file
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() |