摘要:
一、应用pandas # coding=utf-8 import pandas as pd from pandas import DataFrame, Series import re def rule(item_str): """ 对内容的规则 :param item_str: str :retu 阅读全文
摘要:
有的excel表格合并了单元格,读取出的数据就会有很多空的单元格,需将其处理为未合并时的样子进行后续操作。 竖向合并的单元格 def get_org_exc(excel_li): c1 = "" c2 = "" c3 = "" for item in excel_li: if item[0] != 阅读全文