python-by-example-150-chall.../challenges111-117/challenge-115.py

7 lines
156 B
Python
Raw Normal View History

2019-08-04 20:26:35 +08:00
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()