python-by-example-150-chall.../challenges111-117/challenge-115.py
2019-08-04 15:26:35 +03:00

7 lines
156 B
Python

file_read = open('Books.csv', 'r')
count_row = 0
for row in file_read:
print('Row ' + str(count_row) + ' : '+row)
count_row += 1
file_read.close()