共计 631 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 os.path
模块来获取相对路径。具体步骤如下:
-
导入
os.path
模块:import os.path
-
使用
os.path.abspath()
函数获取当前文件的绝对路径:current_path = os.path.abspath(__file__)
-
使用
os.path.dirname()
函数获取当前文件的目录路径:current_dir = os.path.dirname(current_path)
-
使用
os.path.join()
函数拼接相对路径:relative_path = os.path.join(current_dir, '相对路径')
下面是一个完整的示例代码:
import os.path
# 获取当前文件的绝对路径
current_path = os.path.abspath(__file__)
# 获取当前文件的目录路径
current_dir = os.path.dirname(current_path)
# 拼接相对路径
relative_path = os.path.join(current_dir, ' 相对路径 ')
print(relative_path)
注意:在上述代码中,__file__
表示当前文件的路径。os.path.abspath()
函数将其转换为绝对路径,os.path.dirname()
函数获取其所在的目录路径。最后使用 os.path.join()
函数拼接相对路径,得到最终的相对路径。
丸趣 TV 网 – 提供最优质的资源集合!
正文完