CommencerCommencez gratuitement

Filtering with multiple conditions

Budget alone can still return unsuitable homes - a cheap studio won't work for a family needing multiple bedrooms. Tighten the match by adding a second condition: listings must also have at least as many bedrooms as the request requires.

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 price is at or below max_price AND bedrooms is at or above min_bedrooms.
  • Print a few rows to verify the tighter matches.

Exercice interactif pratique

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

# Match on budget and bedroom requirements
matches = hotels.join_where(
    ____,
    pl.col("price") <= pl.col("____"),
    pl.col("bedrooms") >= pl.col("____")
)

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