📌  相关文章
📜  如何检查 openpyxl 中的单元格是否为空 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:31.421000             🧑  作者: Mango

代码示例1
# This checks if the cell has a value, or if it isn't empty then runs your code
if cell.value:
  continue
# OR
if not cell.value == None:
  continue