I imported CSV file with data about airports. Countries are in column "Country Name". I want to work only with data about Ukrainian, German and Polish airports. I filtered my data, but I only know how to pick one country. How I can filter my data for two or more desired countries? I'm using python 3.8.1.
My code:
filtered_data = df[df["Country Name"]=="Poland"]
print(filtered_data)