第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%
答案解析