I'm just starting up with python and am struggling to extract a value from my first column, at the end of the dataframe.
so let's say I have a .csv file with 3 columns:
id,name,country
1,bob,USA
2,john,Brazil
3,brian,austria
i'm trying to extract '3' from the ID column (last row ID value)
fileName=open('data.csv')
reader=csv.reader(fileName,delimiter=',')
count=0
for row in reader:
count=count+1
I'm able to get the rowcount, but am unsure how to get the value from that particular column