python获取当前文件路径

 python获取当前文件的绝对路径以及获取绝对工作目录的代码如下:

import os

current_file_path = __file__
print(f"当前文件路径: {current_file_path}")

输出结果为:

当前文件路径: E:\pythonProgram\pipenv\tool\test.py

 

import os

current_working_dir = os.getcwd()
print(f"当前工作路径: {current_working_dir}")

输出结果为

当前工作路径: E:\pythonProgram\pipenv\tool

你可能感兴趣的:(python,python)