Hi!
Is there a pedagogical reason we are not introducing the syntax “from custom import *” and instead are importing the functions individually? It would seem like memory concerns would be outside the scope of this class but maybe that’s it?
Thanks!
Hi!
Is there a pedagogical reason we are not introducing the syntax “from custom import *” and instead are importing the functions individually? It would seem like memory concerns would be outside the scope of this class but maybe that’s it?
Thanks!
Importing exactly what you will use is considered a best practice among the Python programmers. If a name is in more than one package a student can accidentally reference the wrong one and be completely astonished by what it does.