when I use the IDLE typing in:
import turtle
turtle.forward(100)
My program works flawlessly. However when I create a .py file and attempt to execute it, it spits out this error.
AttributeError: module 'turtle' has no attribute 'forward'
I don't understand why this does not work as it is the same code. I am using python3.7 if that makes a difference. Thanks