A. import Image from PIL B. import PIL from Image C. from Image import PIL D. from PIL import Image
A. 包是模块文件所在的目录,且目录下可以没有__init__.py文件 B. 每个包目录下至多有10个模块文件 C. __init__.py文件的内容可以为空 D. __init__.py文件的内容不能为空。
A. import math B. from math import sqrt C. from math import * D. from * import math
A. from time import strftime B. from * import time C. from time import * D. import time
A. 对 B. 错