各位好
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
想请问 为什么不行这样写呢?
谢谢