LoslegenKostenlos loslegen

Loading data

The pandas package, which you now know how to import as pd, has a useful function, read_excel(), that will load in our Excel data.

The ticket_sales.xlsx file contains data relating to ticket sales for several (fake and punny) movies at a few different theater locations. Maybe they're your theaters.

Let's get this data into Python so you can start looking at movie and location performance.

Diese Übung ist Teil des Kurses

Python for Spreadsheet Users

Kurs anzeigen

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Import the pandas package as pd


# Use the read_excel function to load ticket_sales.xlsx
pd.____(____)
Code bearbeiten und ausführen