I have a basic script that reads a csv file and I pull the specific column I want. The only challenge I have now is how to grab the specific row in that column.
Below is the code I have now.
import csv
with open('CopyofNetflowExporters-v1.5-csv.csv') as csvfile:
csvitem=csv.reader(csvfile)
#csvitem = csv.DictReader(csvfile)
for row in csvitem:
print(row[11])