I have a huge dataset about airbnb in the world. This dataset have 5500 city in it. I want to work only on 'London', 'Paris' and 'Berlin' So from my original dataset name 'df' I want to creat a new dataset 'filtered_df' with only all the data from these 3 cities. I have a variable 'City', so i tried this below but doesn't work as i want.
df_berlin = df['City']== 'Berlin'
df_paris = df['City']== 'Paris'
df_london = df['City']== 'London'
filtered_df = [df_berlin + df_paris + df_london]