Explicit imports

This commit is contained in:
Chris Proctor 2024-08-26 12:10:12 -04:00
parent 9f84b9619e
commit b302693d92
1 changed files with 9 additions and 8 deletions

View File

@ -1,11 +1,12 @@
# drawing.py
# ----------
# By ______(you!)________
#
# This is a drawing of ???.
from turtle import *
from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
forward(100)
right(360 * 2 / 5)