python 路径
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 路径相关的知识,希望对你有一定的参考价值。
atm---main.py import os ,sys print(__file__) print(os.path.abspath(__file__))#绝对路径 print(os.path.dirname(os.path.abspath(__file__))) #相对路径 bash=os.path.dirname(os.path.dirname(os.path.abspath(__file__))) sys.path.append(bash) from config import settings settings.sayhi() config--settings.py def sayhi(): print(‘hello‘)
以上是关于python 路径的主要内容,如果未能解决你的问题,请参考以下文章