python 利用pandas 快速遍历excel

import pandas as pd
df=pd.read_excel('bb.xlsx')
column = list(df.columns)
for i in range(0, len(df)):
    print(df.iloc[i][column[0]],df.iloc[i][column[1]],df.iloc[i][column[2]])
    

 

posted @ 2023-03-19 14:57  myrj  阅读(840)  评论(0编辑  收藏  举报