题目内容

关于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. 错

使用 import 关键字只能在脚本中导入一个模块。

A. 对
B. 错

答案查题题库