I don't understand how "from _ import _" seems to be behaving...
Somehow, when I run the following line:
from athletelist import AthleteList
It ALSO executes (in my IDLE Terminal) the print statements at the end of my athletelist file that aren't even a part of the AthleteList class.
Why, when I write "FROM athletelist IMPORT AthleteList", does this statement also run the print() commands that aren't even a part of the AthleteList class?