“Como ler o arquivo XLSX no notebook Jupyter” Respostas de código

Como ler o arquivo XLSX no notebook Jupyter

import pandas as pd
path = ('...\\filename.xlsx')
xl = pd.ExcelFile(path)
print(xl.sheet_names)
Nasty Nightingale

Como ler o arquivo XLSX no notebook Jupyter

df1 = xl.parse('Sheet1')
Nasty Nightingale

Respostas semelhantes a “Como ler o arquivo XLSX no notebook Jupyter”

Perguntas semelhantes a “Como ler o arquivo XLSX no notebook Jupyter”

Mais respostas relacionadas para “Como ler o arquivo XLSX no notebook Jupyter” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código