如果只需要math模块中的sin()函数,建议使用from math import sin来导入,而不要使用import math导入整个模块。
举一反三
- 要使用模块math,必须先导入该模块,正确的导入命令是: A: >>>import from math B: >>>import math from * C: >>>formmath import * D: >>>from import math *
- 如果要从math模块导入sqrt函数,可以使用语句“from sqrt import math”。
- 引用math模块中sqrt函数的导入语句,下列错误的语句是:( ) A: import math B: from math import sqrt C: from sqrt import math D: from math import *
- 以下导入模块的方式中,错误的是_______。 A: import math B: from math import pow C: from math import * D: from * import math
- 下列哪个选项是导入标准库math中所有对象的正确操作( )。 A: from math import * B: from math import sin C: from math import all D: from math import fun