.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.
Diese Übung ist Teil des Kurses
Python for Spreadsheet Users
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Parse the sales tab of the theater report
sales = theater_report.____(____)
print(sales.head())