Besides the syntactic differences, I do not understand what the difference between import turtle
and from turtle import *
is, as both methods appear to produce the same result:
Method 1
import turtle
t = turtle.Pen()
# rest of program...
Method 2
# Method 2:
from turtle import *
t = Turtle()
# rest of program...
One Internet tutorial I followed used Method 1 and another used Method 2. What is the difference between the two and when should I use each one?