想要在Python中导入math模块中的sqrt(x)函数,下列程序段错误的是?( )
import math
math.sqrt(x)
from math import sqrt as t
t(x)
import math as m
m.sqrt(x)
sqrt(x)