空值判断方法

   1、用openpyxl判断单元格是否为空值:

sheet.cell(row=3, column=8).value is None

2、判断pandas单元格是否为空值:
pd.isnull(df.iloc[i][14]) == True
原文地址:https://www.cnblogs.com/huangyz-xy/p/13325339.html