With header information in csv file, city can be grabbed as:
city = row[\'city\']
Now how to assume that csv file does not have headers, th
You can use pandas.read_csv() function similarly to the way @nosklo describes, as follows:
df = pandas.read_csv("A2", header=None) print df[0]
or
df = pandas.read_csv("A2", header=None, names=(['city'])) print df['city']