openpyxl seems to be a great method for using Python to read Excel files, but I\'ve run into a constant problem. I need to detect whether a ce
openpyxl
This worked for me.
if cell.value is None: print("Blank") else: print("Not Blank")