pandas.read_excel 从活动工作表

发布于 2025-01-12 09:12:59 字数 528 浏览 1 评论 0原文

我正在尝试使用 xlwings 从 excel 运行 python 代码。在我的代码中,我使用 pandas 从 Excel 中读取数据并将数据放入数据框中。函数 pandas.read_excel(io,sheet_name=0, nrows=0, usecols=0) 从 Excel 读取数据。所以我的 sheet_name 是我当前的工作表('Sheet3')、我的 nrows=3usecols="A:F"。我的 io 遇到问题。 io 是我想要使用的 excelworkbook:'workbook1.xlsm'。当我从 vs code 运行代码时,一切正常,但是当我从 excel 作为宏运行它时,

Sub test()
    RunPython ("import test")
End Sub

出现错误:文件未找到

可能是什么原因?

I'm trying to run python code from excel with xlwings. In my code I'm using pandas to read from the excel and put the data into a dataframe. The function pandas.read_excel(io, sheet_name=0, nrows=0, usecols=0) reads from excel. So my sheet_name is my current sheet('Sheet3'), my nrows=3 and usecols="A:F". I've problems with the io. io is the excelworkbook I want to use: 'workbook1.xlsm'. When I'm running the code from vs code, all works fine, but when I run it from excel as a macro

Sub test()
    RunPython ("import test")
End Sub

I get the error: file not found

What could be the reasons?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文