📌  相关文章
📜  遍历数据框列并修改每个值 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:18.943000             🧑  作者: 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)