Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
542 B
4
Indexable
Never
home_price = home[home["price"] < 200]
#display(home_price)
home_location = home_price[home_price["neighbourhood_group"] == "City of Los Angeles"]
home_location = home_location[home_location["neighbourhood"] == "Hollywood"]
#display(home_location)
home_nights = home_location[home_location["minimum_nights"] > 30]
#display(home_nights)
home_availability = home_nights[home_nights["availability_365"] > 200]
#display(home_availability)
home_review = home_availability[home_availability["number_of_reviews"] > 10]
display(home_review)