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:
I would assume if you len() it then would be zero i.e.
len()
if not len(row[0])