Get startedGet started for free

.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.

This exercise is part of the course

Python for Spreadsheet Users

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Parse the sales tab of the theater report
sales = theater_report.____(____)

print(sales.head())
Edit and Run Code