9 lines
No EOL
144 B
Python
Executable file
9 lines
No EOL
144 B
Python
Executable file
from turtle import *
|
|
x=100
|
|
color("white")
|
|
goto(-1/2*x,-1/2*x)
|
|
color("black")
|
|
for i in range (5):
|
|
left(144)
|
|
forward(x)
|
|
mainloop() |