pandas按行读取excel

# -*- coding: utf-8 -*-
import pandas as pd

IO = "ABC.xlsx"
df = pd.DataFrame(pd.read_excel(io=IO, sheet_name="翻译列表"))
for index, row in df.iterrows():
    print(row)
原文地址:https://www.cnblogs.com/fly-kaka/p/15234374.html