📌  相关文章
📜  如何遍历 pandas 数据框 - Python 代码示例

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

代码示例3
# creating a list of dataframe columns 
columns = list(df) 
  
for i in columns: 
  
    # printing the third element of the column 
    print (df[i][2])