15 lines
No EOL
227 B
Python
Executable file
15 lines
No EOL
227 B
Python
Executable file
from turtle import *
|
|
x=100
|
|
g=200
|
|
h=90
|
|
speed(10)
|
|
color("white")
|
|
goto(-1/2*x,-1/2*x)
|
|
color("black")
|
|
for i in range (100):
|
|
for i in range (4):
|
|
forward(g)
|
|
left(h)
|
|
left(10)
|
|
g=g-5
|
|
mainloop() |