fileInput consists of a csv file with some 30 rows and I want to access only the second row.
for row in csv.reader(fileInput):
I need to access the second row not the first one(first one contains col names). row[1]
gives second column in row0
?
only the second row not from the first row!