如果在命令行执行sys.argv返回解释器路径:[‘/Library/Frameworks/Python.framework/Versions/3.6/bin/ipython3'] (2)_ _ file_ _ 获得当前执行模块所在的路径,一般为相对路径,用os.path.abspath(_ _ file_ _)得到执行文件的绝对路径: dirname, filename = os.path.split(os.path.abspath( _ _ file_ _))...
内容过程中中,把内容过程中较好的内容段备份一下,如下内容是关于python获取当前运行程序所在的路径的内容,应该是对码农有些用处。 import os.path print os.path.realpath(file)
python获取当前运行程序所在的路径 import os.path print os.path.realpath(__file__)