.parse() method
From our previous exercise, we know the theater_report
workbook has 4 tabs: sales
, ticket types
, theaters
, and movies
. Let's convert each tab into a DataFrame and look at them.
The theater_report
workbook object has already been loaded for you.
Este ejercicio forma parte del curso
Python for Spreadsheet Users
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
# Parse the sales tab of the theater report
sales = theater_report.____(____)
print(sales.head())