将数据从Excel导入python时出现名称错误

时间:2018-11-08 12:22:26

标签: python excel

将数据从excel导入python时出现名称错误

northern.tss = xl_file.parse('northern.tss')
northern.tss.head()

我得到:

  

未定义名称“ northern”

1 个答案:

答案 0 :(得分:0)

您可以使用pandas函数来使用read_excel()库来读取xcel数据。

import pandas

df = pandas.read_excel('Foo.xlsx', sheetname='Bar')

print("Column headings:")
print(df.columns)

使用数据框,您可以将整列下方的所有行作为列表。要获得这样的列表,只需使用列标题

print(df['Column name'])

要遍历列表,可以使用循环:

for i in df.index:
    print(df['Column name'][i])

以此类推(了解有关pandas DataFrame的更多信息,以了解可以进行哪些数据操作)

More about pandas DataFrame

How to install pandas lib