第14640题
下列Python导入math模块中sqrt(x)函数的程序段错误的是?
A
import math
math.sqrt(x)
B
from math import sqrt as t
t(x)
C
import math as m
m.sqrt(x)
D
import math
sqrt(x)
提交0次 正确率0.00%
答案解析