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

11 lines
No EOL
173 B
Python
Executable file

from turtle import *
x=200
bgcolor("yellow")
color("yellow")
goto(-1/2*x,-1/2*x)
color("red")
for i in range (50):
forward(x)
left(90)
x=x-4
mainloop()