python模块 __name=='__main__' 用法1.ceshi_mod1.pydef test1(): print('111111')def test2(): print('2222')if __name__ =='__main__': test1()2.ceshi_mod2.pyimport ceshi_mod1 as tctc.test1() 输入一个111111