执行import math导入模块后,math.sqrt(9)的值是___________.
3.0
举一反三
- 引用math模块中sqrt函数的导入语句,下列错误的语句是:( ) A: import math B: from math import sqrt C: from sqrt import math D: from math import *
- 如果要从math模块导入sqrt函数,可以使用语句“from sqrt import math”。
- 执行import math导入模块后,math.floor(3.9)的值是_________________
- 以下导入模块的语句正确的是 A: import math B: from math import * C: from math import sqrt D: 以上都正确
- from math import sqrt 表示从sqrt库导入math函数
内容
- 0
判断如下陈述是否正确?如果要从math模块导入sqrt函数,可以使用语句“from sqrt import math”。
- 1
要使用模块math,必须先导入该模块,正确的导入命令是: A: >>>import from math B: >>>import math from * C: >>>formmath import * D: >>>from import math *
- 2
下列语句错误的是_____。? import math|from math import sqrt|import sqrt|from math import *
- 3
中国大学MOOC: 判断如下陈述是否正确?如果要从math模块导入sqrt函数,可以使用语句“from sqrt import math”。
- 4
判断如下陈述是否正确?如果要从math模块导入sqrt函数,可以使用语句“from sqrt import math”。 A: 正确 B: 错误