题目内容

下面导入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. 错

解释器查找模块时,默认会先搜索当前的目录。

A. 对
B. 错

答案查题题库