Python 路径设置

#1:设置python模块的搜索路径有几种方式

'''
1、设置PYTHONPATH环境变量
2、通过添加.pth文件
3、通过sys.path设置路径
'''


#2:永久设置python模块的搜索路径有几种方式,如何使用他们
'''
1、在python安装路径下添加*.pth文件,在文件中添加需要的路径
'''

#3:如何临时设置python模块的搜索路径
import sys
sys.path.append('.\\modules')

import working_fun
print(working_fun.greet('Tim'))

'''
1、windows系统,在命令行执行时,使用 set PYTHONPATH path 
'''

modules\working_fun.py

def greet(name):
    return 'hello ' + name

你可能感兴趣的:(Python面试100讲)