e.g.) scipy.fftpack, matplotlib.pyplot and more... ```python from scipy import fftpack # OK! import scipy as _ fftpack = getattr(scipy, 'fftpack') # AttributeError... ```