ComeçarComece de graça

.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 exercício faz parte do curso

Python for Spreadsheet Users

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

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

print(sales.head())
Editar e executar o código