zoukankan      html  css  js  c++  java
  • python 根据excel单元格内容获取该单元格所在的行号

    python 环境:Python 2.7.16

    需要安装:pandas/xlrd (pip2 install pandas/ pip2 install xlrd)

    import pandas as pd
    
    def find_row(num_value,file_name):
        """
        Returns the row number based on the value of the specified cell
        """
        demo_df = pd.read_excel(file_name)
        for indexs in demo_df.index:
            for i in range(len(demo_df.loc[indexs].values)):
                if (str(demo_df.loc[indexs].values[i]) == num_value):
                    row = str(indexs+2).rstrip('L')
                    return row
    
    row_num = find_row('103.03','test.xlsx')
    print(row_num)
    

    以上代码实现:从‘test.xlsx'中获取单元格’103.03‘所在的行号(注意:如果存在多个单元格的value是’103.03‘,只返回第一次读到的行号)

  • 相关阅读:
    Redis篇
    MySql篇
    Tomcat篇
    JDK篇
    冒泡排序(算法源码)
    堆排序(源码)
    快速排序(递归及非递归算法源码)
    MongoDB 复制
    MongoDB appendix
    服务器端脚本
  • 原文地址:https://www.cnblogs.com/njuptlwh/p/13070291.html
Copyright © 2011-2022 走看看