关于 python xlrd 的问题
如何知道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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Sheet
类有一个ncols
成员,它指示列数The
Sheet
class has ancols
member which indicates the number of columns以下是 xlrd 的 README.html 的“快速入门”部分的前 6 行:
您可以通过 this 获取教程链接。同样,文档的最新 SVN 提交也是如此。如果您从源发行版或通过运行 Windows 安装程序安装了 xlrd,则您应该已经拥有这些文档。
Here are the first 6 lines in the "Quick Start" section of xlrd's README.html:
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.