1、用openpyxl判断单元格是否为空值:
sheet.cell(row=3, column=8).value is None2、判断pandas单元格是否为空值:
pd.isnull(df.iloc[i][14]) == True