📜  pandas 迭代列 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:04.700000             🧑  作者: Mango

代码示例2
# 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)