私はPILで作業しているときに、たくさんのPILモジュールをインポートする必要があります。私はこれを行うには3つの方法を試していたが、最後のものだけがすべてにもかかわらず、作品は私には論理的なものされていますPython PILのインポートが機能しないのはなぜですか?
は、完全なPILをインポートし、それがコードのモジュールです呼び出す:NOPE
すべてをインポート>>> import PIL
>>> image = PIL.Image.new('1', (100,100), 0)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'Image'
>>> from PIL import *
>>> image = Image.new('1', (100,100), 0)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'Image' is not defined
PILからいくつかのモジュールをインポートするNOPE:
>>> from PIL import Image
>>> image = Image.new('1', (100,100), 0)
>>> image
<PIL.Image.Image image mode=1 size=100x100 at 0xB6C10F30>
>>> # works...
OK PILから
私はここで何を得られなかったのですか?