iterate through columns pandas code example
Example 1: pandas iterate columns
for name, values in df.iteritems():
print('{name}: {value}'.format(name=name, value=values[0]))
Example 2: python loop through column in dataframe
# Iterate over two given columns only from the dataframe
for column in empDfObj[['Name', 'City']]:
# Select column contents by column name using [] operator
columnSeriesObj = empDfObj[column]
print('Colunm Name : ', column)
print('Column Contents : ', columnSeriesObj.values)
Example 3: how to iterate through a pandas dataframe
# creating a list of dataframe columns
columns = list(df)
for i in columns:
# printing the third element of the column
print (df[i][2])