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