以下表达式的值为?Math.round(3.6) + Math.abs(-2) + (int)(Math.sqrt(9))
举一反三
- 表达式eval('''______ ('math').sqrt(3**2+4**2)''')的值为______ 。(5.0)
- 先用“from math import *”语句导入math模块,输出表达式sqrt(2)*sqrt(2)==2的值时,发现其值为False,所以该表达式的更好的写法是 。设比较的精度为10-5
- 执行import math导入模块后,math.sqrt(9)的值是___________.
- 假设math标准库已导入,那么表达式 eval('math.sqrt(4)') 的值为_________
- 引用math模块中sqrt函数的导入语句,下列错误的语句是:( ) A: import math B: from math import sqrt C: from sqrt import math D: from math import *