Python openpyxl 遍历所有sheet 查找特定字符串的方法
作者:lysaausb1 时间:2023-08-25 10:22:47
如下所示:
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
来源:https://blog.csdn.net/lysaausb1/article/details/79101859
标签:Python,openpyxl,sheet
0
投稿
猜你喜欢
python使用pymongo操作mongo的完整步骤
2023-07-12 20:31:21
PHP实战之投票系统的实现
2023-10-24 10:40:39
解决Js先触发失去焦点事件再执行点击事件的问题
2024-04-22 12:50:33
识别操作系统是不是vista的js代码
2013-10-20 19:08:25
Python编程通过懒属性提升性能
2022-04-01 09:48:43
对Python3中列表乘以某一个数的示例详解
2023-05-05 03:10:40
Django ContentType组件详解
2022-04-11 14:19:26
php中常用的正则表达式的介绍及应用实例代码
2024-05-03 15:35:24
jquery动态遍历Json对象的属性和值的方法
2024-06-09 00:53:36
jupyter notebook运行代码没反应且in[ ]没有*
2022-03-06 17:37:39
Python实现简单生成验证码功能【基于random模块】
2022-12-10 18:19:58
Python HTML解析器BeautifulSoup用法实例详解【爬虫解析器】
2023-05-21 01:32:42
使用python实现微信小程序自动签到功能
2021-05-30 10:04:11
python实现textrank关键词提取
2021-11-01 16:47:58
Sql Server事务语法及使用方法实例分析
2024-01-22 12:23:38
认清区别CSS的类class和id
2007-10-08 12:02:00
echarts实现晶体球面投影的实例教程
2023-09-02 10:35:12
Go 并发编程协程及调度机制详情
2024-01-31 03:22:55
python 实现控制鼠标键盘
2023-08-04 09:37:56
Python数据分析Pandas Dataframe排序操作
2022-06-28 07:44:11