最简单创建模块的方法就是创建以.py结尾的扩展名的文件,在文件中包含函数和变量。
例一:helloworld模块
模块原型:
#helloworld.py<pre name="code" class="python"><pre name="code" class="python" style="font-size:10px;"><span style="font-size:10px;">def hello():
print("hello world!")
__version__ = '0.1'</span>
模块使用效果:
<pre name="code" class="python" style="font-size:10px;">#test.py
<span style="font-family:Arial, Helvetica, sans-serif;">import helloworld</span>
helloword.hello()
print("version",helloworld.__version__)
注意:helloworld.py必须和test.py在同一个文件夹
输出结果:
hello world!
('version', '0.1')