I came upon this code in a tutorial:
for row in csv_reader:
if not row:
continue
dataset.append(row)
Which I take to mean that if the code encounters something other than a row, just skip and continue. Is that correct?
What defines 'not row'?