当前位置: 首页 > 图灵资讯 > 行业资讯> python创建模块的注意点

python创建模块的注意点

来源:图灵python
时间: 2024-07-04 14:59:15

说明

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!')
eliflen(args)==2:
print('Hello,%s!'%args[1])
else:
print('Toomanyarguments!')

if__name__='__main__':
test()

以上是python创建模块的注意事项,希望对大家有所帮助。更多Python学习指导:python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。