热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

使用Python遍历Excel工作表

本文介绍了如何使用Python遍历Excel工作表中的所有行、列和单元格。通过示例代码,详细展示了如何读取和打印工作表中的数据。

为了遍历Excel工作表中的所有行,可以使用以下代码:

num_rows = worksheet1.nrows
for curr_row in range(num_rows):
    row = worksheet1.row_values(curr_row)
    print('Row %s is %s' % (curr_row, row))

接下来,我们可以通过类似的方法遍历工作表中的所有列:

num_cols = worksheet1.ncols
for curr_col in range(num_cols):
    col = worksheet1.col_values(curr_col)
    print('Column %s is %s' % (curr_col, col))

最后,我们可以遍历工作表中的所有单元格,以获取每个单元格的具体值:

for rown in range(num_rows):
    for coln in range(num_cols):
        cell = worksheet1.cell_value(rown, coln)
        print(cell)

以上代码使用了openpyxlxlrd库来读取Excel文件。确保已安装相应的库,以便顺利运行代码。


推荐阅读
author-avatar
书友48919914
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有