CommencerCommencer gratuitement

pd.ExcelFile() function

It's rare that you'll have a spreadsheet with just one tab. In this chapter, we'll use multi-tabbed workbook, theater_report.xlsx that will give us some more details on our movie sales. Before we learn about what's in it, we've got to get it into Python.

The pandas package has already been loaded for you as pd to help you with this task.

Cet exercice fait partie du cours

Python for Spreadsheet Users

Afficher le cours

Instructions

  • Use your new ExcelFile() function to read in theater_report.xlsx and assign the result to theater_report.
  • Print the workbook object.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Read in the whole workbook


# Print the workbook
print(____)
Modifier et exécuter le code