for name, values in df.iteritems(): print('{name}: {value}'.format(name=name, value=values[0]))
# 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)