Working with split data
Your team wants to use data from the 2016 and 2017 seasons. The game data is stored in a spreadsheet file with each season on a separate sheet.

This is a perfect chance to start building pandas muscles! You'll use pandas to look at each season of data and see if they can be joined into one data frame. A coworker has already imported the pandas package into the code environment as "pd" and saved each sheet to csv files. The files are called games_2016.csv and games_2017.csv.
Este ejercicio forma parte del curso
Pandas Joins for Spreadsheet Users
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Create data frame for 2016
games_2016 = pd.read_csv(____)