各位好
from PIL import Image
from matplotlib import pyplot as plt
上面這兩行 如果寫成下面這樣 也可以
import PIL.Image as Image
import matplotlib.pyplot as plt
from collections import namedtuple
但上面一行 如果寫成下面這樣 就不行
import collections.namedtuple as namedtuple
想請問 為什麼不行這樣寫呢?
謝謝