cara memeriksa apakah sel kosong di openpyxl

# 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
_fresh_