In python, excuse me what does it mean, don't understand, can you explain it?
CodePudding user response:
No two written fromUsually it is this write
The import scipy # import scipy library
Scipy. Misc. Imread (XXX)
Can also wrote
The from scipy import misc # import from the scipy library misc this package
Misc. Imread (XXX)
Can also wrote
The from scipy. Misc import imread # from scipy library misc package import imread this function
Imread (XXX)