关于 python xlrd 的问题

发布于 2024-09-10 14:46:31 字数 202 浏览 7 评论 0原文

如何知道Excel工作表中使用的总列数,请参见以下链接 http://scienceoss.com/read-excel-files-from-python/< /a>

谢谢..

How to know the total number of columns used in an excel sheet in the following link
http://scienceoss.com/read-excel-files-from-python/

Thanks..

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

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

发布评论

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

评论(2

小嗲 2024-09-17 14:46:31

Sheet 类有一个 ncols 成员,它指示列数

The Sheet class has a ncols member which indicates the number of columns

不打扰别人 2024-09-17 14:46:31

以下是 xlrd 的 README.html 的“快速入门”部分的前 6 行:

import xlrd
book = xlrd.open_workbook("myfile.xls")
print "The number of worksheets is", book.nsheets
print "Worksheet name(s):", book.sheet_names()
sh = book.sheet_by_index(0)
print sh.name, sh.nrows, sh.ncols

您可以通过 this 获取教程链接。同样,文档的最新 SVN 提交也是如此。如果您从源发行版或通过运行 Windows 安装程序安装了 xlrd,则您应该已经拥有这些文档。

Here are the first 6 lines in the "Quick Start" section of xlrd's README.html:

import xlrd
book = xlrd.open_workbook("myfile.xls")
print "The number of worksheets is", book.nsheets
print "Worksheet name(s):", book.sheet_names()
sh = book.sheet_by_index(0)
print sh.name, sh.nrows, sh.ncols

You can get a tutorial via this link. Likewise the latest SVN commit of the docs. If you installed xlrd from a source distribution or by running a Windows installer, you should already have the docs.

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