gpt4 book ai didi

python - 你如何在python中自动找到文件路径

转载 作者:太空宇宙 更新时间:2023-11-04 09:28:43 25 4
gpt4 key购买 nike

我正在寻找解析 excel 数据文件的方法,并希望能够让我的程序根据我正在使用的当前 python 文件的文件位置自动填写文件路径。

比如在代码中

categorization_file = r'C:\Users\Name\Desktop\ExcelFile.xlsx'
inputVariables = categorization_file.parse(sheet_name='Control')

如果可能,我希望自动生成“r'C:\Users\Name\Desktop\”部分。此路径与我运行程序的文件相同。

谢谢

最佳答案

import os
# to get the location of the current python file
basedir = os.path.dirname(os.path.abspath(__file__))
# to join it with the filename
categorization_file = os.path.join(basedir,'ExcelFile.xlsx')

关于python - 你如何在python中自动找到文件路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56549732/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com