#!/usr/bin/env python import os #文件所在路径(模块路径) print __file__,os.path.realpath(__file__),os.path.abspath(__file__) #运行程序时所在路径 print os.path.curdir,os.path.realpath(os.path.curdir),os.path.abspath(os.path.curdir) print os.getcwd() import sys #运行文件所在路径 print sys.argv[0],sys.path[0]