I have a CSV file that I\'m reading in Python and I want the program to skip over the row if the first column is empty. How do I do this?
Right now I have:
After hour of trying I was able to do it
while act_tab.cell(row=i, column=1).value is not None: ...