Files
lab_turtle/drawing.py
eqbrown_teacher 0046938dcc experimented with turtle forward
i'm excited about demoing the turtle lab
2025-08-27 11:49:17 +08:00

24 lines
285 B
Python

from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
forward(300)
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)
forward(200)
input()