8 lines
93 B
Python
8 lines
93 B
Python
from turtle import *
|
|
|
|
for line in range(5):
|
|
forward(100)
|
|
right(360 * 2 / 5)
|
|
|
|
input()
|