python openpyxl 从指定行列中搜索指定的值
时间:2020-11-27 09:45:16
收藏:0
阅读:331
Python openpyxl 从指定行列中,搜索指定的值
for row in range(4, 46):
for column in "ABCMWX":
cell_name = "{}{}".format(column, row)
print ws[cell_name].value
原吧:https://stackoverrun.com/cn/q/8013039
原文:https://www.cnblogs.com/gina11/p/14046088.html
评论(0)