说明
1、模块名称应遵循Python变量命名规范,不得使用中文或特殊字符;
2、不要与系统模块名冲突,最好先检查系统是否已经存在该模块。
检查方法是在Python交互环境中执行importabc,如果成功,则说明该模块存在于系统中。
实例
#!/usr/bin/envpython3 #-*-coding:utf-8-*- 'atestmodule' __author__='MichaelLiao' importsys deftest(): args=sys.argv iflen(args)==1: print('Hello,world!') eliflen(args)==2: print('Hello,%s!'%args[1]) else: print('Toomanyarguments!') if__name__=='__main__': test()
以上就是python创建模块的注意点,希望对大家有所帮助。更多Python学习指路:Python基础教程