Files
lab_turtle/drawing.py
eqbrown_teacher 84907f4322 testing commit
I'm excited I set up all of the students!
2025-08-26 11:43:42 +08:00

24 lines
285 B
Python

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