1.导入模块
(1)import 模块名
(2)from 模块名 import 函数名
(3)import 模块名 as 新名字
2.__name__=='__main__'
在作为程序运行时候,__name__属性的值是'__main__',而作为模块导入的时候,这个值就是该模块的名字了。