python 查看库路劲,添加库路劲

查看库路劲方法

import sys
print(sys.path)

 添加库路劲方法

sys.path.append("D:programfilespythonLib")
print(sys.path)

博客里大都是转载的内容,其目的主要用户知识的组织和管理。
原文地址:https://www.cnblogs.com/liyuanhong/p/14705967.html