4 lines
64 B
Python
4 lines
64 B
Python
|
file = open("books.csv","r")
|
||
|
for row in file:
|
||
|
print(row[3])
|