Home > other >  The from imageio from imread excuse me, is what mean
The from imageio from imread excuse me, is what mean

Time:09-28

There are the from scipy. Misc from imread
In python, excuse me what does it mean, don't understand, can you explain it?

CodePudding user response:

No two written from

Usually 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)
  • Related