I am looking to filter the Pandas Dataframe to select the data from two different types of attributes:
restaurants=df['restaurants'][df['restaurants']=='Español' or df['restaurants']=='Italiano']
But i can't use the option or for that could you give me an example of how to do it.