python读取excel文件

python读取excel文件,第1张

python读取excel文件
def read_xlrd(excelFile):
    count = 0
    data = xlrd.open_workbook(excelFile)
    table = data.sheet_by_index(0)

    for rowNum in range(table.nrows):
        rowVale = table.row_values(rowNum)
        if "hh" in rowVale:
            count += 1
    return count

以上代码的功能是统计字符串hh在excel表中出现的次数,excelFile是表名,rowVale得到的是excel表中的一行数据,a是统计的次数。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/3973163.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-10-21
下一篇 2022-10-21

发表评论

登录后才能评论

评论列表(0条)

保存