【多选题】下面哪些是正确的Python标准库对象导入语句?
A. import math.sin as sin
B. from math import sin
C. import math.*
D. from math import *
A. import math.sin as sin
B. from math import sin
C. import math.*
D. from math import *
举一反三
- 下列哪个选项是导入标准库math中所有对象的正确操作( )。 A: from math import * B: from math import sin C: from math import all D: from math import fun
- 下列程序段中,错误的是 A: import math;print(math.sin(3)) B: from math import *;print(sin(3)) C: import math as m;print(m.sin(3)) D: import math;print(sin(3))
- 下列哪个选项的操作可以从模板库中导入某一指定对象同时实现了别名设置。( ) A: from math import sin as f B: from math import sin C: import numpy as np D: from math import *
- 如果只需要math模块中的sin()函数,建议使用from math import sin来导入,而不要使用import math导入整个模块。
- 可以导入math库的pi的选项是( )。 A: from math import pi B: import math.pi C: from math import * D: import math