win32com相当于xlrd的sheet.ncols
xlrd 可以很容易地知道最后一列是什么。
有没有简单的方法使用win32com?
我尝试过使用 ws.UsedRange.Rows.Count 但这似乎没有给出正确的答案。
xlrd makes it pretty easy to know what the last column is.
is there an easy way using win32com?
I have tried using ws.UsedRange.Rows.Count but this doesnt seem to give a correct answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它被定义为给出使用范围中的行数计数(可能不是从单元格
A1
开始)。您需要工作表中的列数。尝试这样的事情:
That's defined to give the count of rows in the used range (which may not start at cell
A1
). You need the number of columns in the worksheet.Try something like this: