how to check if a cell is empty in openpyxl

Solutions on MaxInterview for how to check if a cell is empty in openpyxl by the best coders in the world

showing results for - "how to check if a cell is empty in openpyxl"
Alex
05 Aug 2020
1# This checks if the cell has a value, or if it isn't empty then runs your code
2if cell.value:
3  continue
4# OR
5if not cell.value == None:
6  continue