详解python自定义模块、包

高洛峰
发布: 2017-03-16 14:19:57
原创
2210 人浏览过

1、保存一个hello.py文件在F:/data/python目录下

  • hello.py

>>> def hello(x):    print x
登录后复制

  • 目录

详解python自定义模块、包

  • 导入

>>> import sys>>> sys.path.append('F:/data/python') #添加路径,此添加是一次性的>>> import hello>>> hello.hello(5)  #调用5
登录后复制

 2、不改变sys.path导入自定义模块:

第一种方法:将hello2.py文件放在D:/Python27/lib/site-packages目录下

>>> import sys,pprint>>> pprint.pprint(sys.path)
['', 'D:\\Python27\\Lib\\idlelib', 'F:\\data\\s', 'D:\\Python27', 'C:\\Windows\\system32\\python27.zip', 'D:\\Python27\\DLLs', 'D:\\Python27\\lib', 'D:\\Python27\\lib\\plat-win', 'D:\\Python27\\lib\\lib-tk', 'D:\\Python27\\lib\\site-packages']>>> import hello2>>> hello2.hello()
hello,world!
登录后复制

 第二种方法:将F:/data/python路径添加到环境变量(在系统变量中,添加PYTHONPATH变量,再将路径添加到值中)

>>> import sys>>> import hello>>> hello.hello(1)1
登录后复制

 3、自定义包,导入模块

首先,创建如下目录,pytest为包,将路径F:\test添加到环境变量PYTHONPATH中,pytest包中init.py文件是必要的,内容可以为空

详解python自定义模块、包

>>> import sys>>> from pytest import hello>>> hello.hello(4)4
登录后复制

 

以上是详解python自定义模块、包 的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板