17 lines
No EOL
310 B
Python
Executable file
17 lines
No EOL
310 B
Python
Executable file
from turtle import *
|
|
x=100
|
|
color("white")
|
|
goto(-1/2*x,-1/2*x)
|
|
color("black")
|
|
for i in range (4):
|
|
for i in range (6):
|
|
forward(20)
|
|
right(90)
|
|
forward(20)
|
|
left(90)
|
|
forward(20)
|
|
left(90)
|
|
forward(20)
|
|
right(90)
|
|
left(90)
|
|
mainloop() |