I have about 20 rows of data with 4 columns each. How do I print only a certain row. Like for instance print only Row 15, Row 16 and Row 17. When I try row[0] it only prints out the first column but not the entire row. I am confused here.
Right now I can read out each of the rows by doing:
for lines in reader: print(lines)