手揣网教程:绿色安全纯净官方版,体验当今速度最快的浏览器!

详细说明python自定义模块、包

时间:2024/6/1作者:未知来源:手揣网教程人气:

[摘要]1、保存一个hello.py文件在F:/data/python目录下hello.py>>> def hello(x): print x目录导入>>> imp...
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中文网其它相关文章!


小程序是一种不需要下载安装即可使用的应用,它实现了应用“触手可及”的梦想,用户扫一扫或者搜一下即可打开应用。



关键词:详细说明python自定义模块、包




Copyright © 2012-2018 手揣网教程(http://www.shouchuai.com) .All Rights Reserved 网站地图 友情链接

免责声明:本站资源均来自互联网收集 如有侵犯到您利益的地方请及时联系管理删除,敬请见谅!

QQ:1006262270   邮箱:kfyvi376850063@126.com   手机版