📅  最后修改于: 2022-03-11 14:46:04.700000             🧑  作者: Mango
# 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)