I have a csv file and I'm trying to get one specific value, for example, in row 20, in column 3.
But so far I have managed to display all the values in column 3 (here called "name").
Here is my Python code
d = DictReader(r.csv().split('\n'))
for line in d:
score = line["name"]
print score
How can I display and retrieve a value only for a specific row?
source
share