lab_turtle/drawing.py

23 lines
226 B
Python

from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
left(90)
penup()
forward (100)
right(90)
pendown()
color("red")
for i in range(360):
forward(3)
right(1)
input()