试题详情

Python模块引用的方法,以下不正确的是(     )。

A
Import  math
A=sqrt(5)

B
Import math
A=math.floor(12.789)

C
From math import ceil
A=ceil(12.123)

D
From math import sqrt as pfg
A=pfg(5)