python xlrd 中的 cellname 如何使用?
book = xlrd.open_workbook(path) #打开excel模板文件
# 遍历excel文件中的sheet
print "%s:"%(file)
for shn in range(book.nsheets):
sh = book.sheet_by_index(shn)
for row in range(sh.nrows):
for col in range(sh.ncols):
val = str(sh.cell_value(row,col))
if val[8:15] == '8000005':
print '找到:'
print '文件名:',file
print 'Sheet名:',sh.name
print 'Cell:',sh.cellname(row,col)
print 'Cell的行列:%d,%d'%(row,col)
报错,sh 无 cellname
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
测试成功了。
from xlrd import celname
即可。