lab_turtle/drawing.py

54 lines
549 B
Python

from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
# hexagon
forward(100)
right(60)
forward(100)
right(60)
forward(100)
right(60)
forward(100)
right(60)
forward(100)
right(60)
forward(100)
penup
forward (50)
right(90)
# pentagon
forward(90)
right(72)
forward(90)
right(72)
forward(90)
right(72)
forward(90)
right(72)
forward(90)
# star
forward(100)
right(360*2 / 5)
forward(100)
right(360*2 / 5)
forward(100)
right(360*2/ 5)
forward(100)
right(360*2/ 5)
forward(100)
right(360*2/ 5)
input(
)