Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created January 29, 2018 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/ebf4a917433542a8eca68a2164f80233 to your computer and use it in GitHub Desktop.
Save Fhernd/ebf4a917433542a8eca68a2164f80233 to your computer and use it in GitHub Desktop.
Importar datos desde un archivo de hoja de cálculo en Python.
import pandas as pd
hoja_calculo_df = pd.read_excel('libros.xlsx', sheet_name='TresMaestros')
print(hoja_calculo_df)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment