I\'ve got a Pandas DataFrame and I want to combine the \'lat\' and \'long\' columns to form a tuple.
Int64Index
Pandas has the itertuples method to do exactly this:
list(df[['lat', 'long']].itertuples(index=False, name=None))