不挂科搜题免费

问题:

在Python中导入模块中的对象有哪几种方式?

答案:

1)import模块名[as别名];
2)from模块名import对象名[as别名];
3)from math import*