8 lines
No EOL
133 B
Python
Executable file
8 lines
No EOL
133 B
Python
Executable file
from turtle import *
|
|
x=100
|
|
color("white")
|
|
goto(-1/2*x,-1/2*x)
|
|
color("black")
|
|
for i in range (10):
|
|
circle(50)
|
|
left(75) |