📌  相关文章
📜  python循环遍历数据框中的列 - Python代码示例

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

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