from toto import *
This is a bad idea, as sometimes the name of the things that you import will conflict with the name of other things in your programs. And this can be a nightmare to debug. So, try not to be lazy and rather define explicitly what you want to import with:
import totoor
from toto import titi, tata
No comments:
Post a Comment