CommencerCommencez gratuitement

Matching listings to budget requests

Budget is often the first filter travelers apply when searching for accommodation. You have a requests DataFrame with traveler preferences including maximum price. Match each listing to requests where the listing price is within the traveler's budget.

polars is loaded as pl, and the DataFrames hotels and requests are available for you.

Cet exercice fait partie du cours

<cours>Data Transformation with Polars</cours>
Voir le cours

Instructions de l’exercice

  • Match hotels to requests where the listing price is at or below the request's max_price.
  • Print a few rows to see the matches.

Exercice interactif pratique

Essayez cet exercice en complétant ce code d’exemple.

# Match listings within budget
matches = hotels.____(
    requests,
    pl.col("____") <= pl.col("____")
)

# Print a few rows
print(matches.____())
Modifier et exécuter le code