码迷,mamicode.com
首页 > 编程语言 > 详细

python 路径

时间:2016-10-13 23:32:23      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
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 路径

标签:

原文地址:http://www.cnblogs.com/xuehuahongmei/p/5958355.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!