Sto usando python2.6 e ho riscontrato un problema stamattina. Ha detto che "modulo" non ha attributo "Immagine". Ecco il mio input Perchè la prima volta non posso usare PIL.Image?Python PIL non ha attributo 'Immagine'
>>> import PIL
>>> PIL.Image
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'Image'
>>> from PIL import Image
>>> Image
<module 'PIL.Image' from '/usr/lib/python2.6/dist-packages/PIL/Image.pyc'>
>>> PIL.Image
<module 'PIL.Image' from '/usr/lib/python2.6/dist-packages/PIL/Image.pyc'>