Python openpyxl 遍历所有sheet 查找特定字符串的方法
更新时间:2018年12月10日 15:12:58 作者:lysaausb1
今天小编就为大家分享一篇Python openpyxl 遍历所有sheet 查找特定字符串的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
如下所示:
from openpyxl import workbook from openpyxl import load_workbook from openpyxl import worksheet def find_false_in_sheet(sheet): for column in sheet.iter_cols(): for cell2 in column: if cell2.value is not None: # print cell2.value # print type(cell2.value) info2 = cell2.value.find('false') if info2 == 0: print cell2 print cell2.value def find_false_in_xlsx(file_name): print file_name wb = load_workbook(file_name) all_sheets = wb.get_sheet_names() print(all_sheets) for i in range(len(all_sheets)): sheet = wb.get_sheet_by_name(all_sheets[i]) print (sheet.title + ': max_row: ' + str(sheet.max_row) + ' max_column: ' + str(sheet.max_column)) find_false_in_sheet(sheet) # start find_false_in_xlsx("test.xlsx") # for row in sheet.iter_rows(): # for cell in row: # if cell.value is not None: # info = cell.value.find('BB') # if info == 0: # print cell.value
以上这篇Python openpyxl 遍历所有sheet 查找特定字符串就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
在Python中使用swapCase()方法转换大小写的教程
这篇文章主要介绍了在Python中使用swapCase()方法转换大小写的教程,是Python入门中的基础知识,需要的朋友可以参考下2015-05-05
最新评论