• 2022-05-30
    ‍判断如下陈述是否正确?‌‍如果要从math模块导入sqrt函数,可以使用语句“from sqrt import math”。‌‍‌
  • 内容

    • 0

      以下导入模块的语句正确的是 A: import math B: from math import * C: from math import sqrt D: 以上都正确

    • 1

      下列语句错误的是_____。? import math|from math import sqrt|import sqrt|from math import *

    • 2

      下列语句错误的是_____。 A: from math import sqrt B: import math C: from math import * D: import sqrt

    • 3

      如果只需要math模块中的sin()函数,建议使用from math import sin来导入,而不要使用import math导入整个模块。

    • 4

      关于 import 引用,下列选项中描述错.误.的是 。 A: import 保留字用于导入模块或者模块中的对象 B: 使用 import math 可以引入 math 库 C: 使用 import math as m 可以引入 math 库并取别名 m D: 可以使用 from math import sqrt 引入 math 库