我的python脚本在〜/ bin中,我把它调用到各种文件夹。 问题是
pwd_path = os.path.dirname(os.path.realpath(__file__))
print(pwd_path)
正在打印${HOME}/bin
,但是我想要调用它的目录名称。
任何线索?
答案 0 :(得分:0)
__file__
是脚本本身的location_file_name
获取工作目录:
import os
working_directory = os.getcwd()