Get startedGet started for free

Creating a Lazy Query

You are asked to provide details on the range of electric vehicles for each model for a pre-sales opportunity. As you only need a subset of columns from the CSV you want to write this as a lazy query to take advantage of query optimization.

This exercise is part of the course

Introduction to Polars

View Course

Hands-on interactive exercise

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

# Select the columns with a lazy query
ev_df = ____("electric_vehicles.csv").____

# Execute the lazy query
print(____)
Edit and Run Code