os.path.dirname(__file__)使用、Python os.path.abspath(__file__)使用

import os

def file_path():
    '''打开当前运行脚本的绝对路径'''
    paths=os.path.dirname(__file__)
    print paths
    '''切割路径'''
    newpaths=paths.split('/')[0]
    print newpaths
    '''打开完整路径'''
    new=os.path.abspath(__file__)
    print new

os.path.abspath(__file__)返回的是.py文件的绝对路径(完整路径)

os.path.dirname(__file__)返回的是.py文件的目录

运行结果如下:

os.path.dirname(__file__)使用、Python os.path.abspath(__file__)使用_第1张图片

你可能感兴趣的:(python)