下列选项中,用于从PIL库中导入Image类的语句是 ( )。
A. import Image from PIL
B. import PIL from Image
C. from Image import PIL
D. from PIL import Image
查看答案
关于Python中的包,下面说法正确的是 ( )。
A. 包是模块文件所在的目录,且目录下可以没有__init__.py文件
B. 每个包目录下至多有10个模块文件
C. __init__.py文件的内容可以为空
D. __init__.py文件的内容不能为空。
下面导入math模块的方式中,错误的是 ( )。
A. import math
B. from math import sqrt
C. from math import *
D. from * import math
下面关于time库引用不正确的是( )。
A. from time import strftime
B. from * import time
C. from time import *
D. import time
无论执行多少次import,一个模块只会被导入一次。
A. 对
B. 错