有没有办法使用 xlrd 关闭工作簿

发布于 2024-10-26 17:15:39 字数 102 浏览 1 评论 0原文

我正在使用函数 open_workbook() 打开 Excel 文件。但我在 xlrd 模块中找不到任何稍后关闭文件的函数。有没有办法使用 xlrd 关闭 xls 文件? 或者根本不需要?

I am using the function open_workbook() to open an excel file. But I cannot find any function to close the file later in the xlrd module. Is there a way to close the xls file using xlrd?
Or is not required at all?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如此安好 2024-11-02 17:15:39

深入研究邮件列表存档,看来文件对象是直接由构造函数关闭的,所以不需要显式关闭。

Digging into the mailing list archive, it seems that the file object is closed directly by the constructor, so you don't need to close it explicitly.

静谧 2024-11-02 17:15:39

open_workbook 在返回之前调用release_resources(它关闭映射文件)。

The open_workbook calls the release_resources ( which closes the mmaped file ) before returning.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文