A. 包是模块文件所在的目录,且目录下必须有__init__.py文件 B. 每个包目录下至多有10个模块文件 C. __init__.py文件的内容可以为空 D. __init__.py文件的内容不能为空。
A. 列表 B. 元组 C. 字符串 D. 字典
A. %s B. %i C. %d D. %f
A. read() B. tell() C. seek() D. write()
A. import math B. from math import sqrt C. from math import * D. from sqrt import math