If you want to find the value in the rows in a particular column, then you can try this:
import csv
with open("Footballers.csv") as f:
reader = csv.reader(f)
for row in reader:
if(row[column_index]==value_to_be_found):
print("Found")
Hope this helps!!
If you need to learn more about Python, It's recommended to join Python Programming course today.
Thanks!