here is the code!
dff=pd.read_csv('file.csv')
#finding those restaurant which have bar's at night
user=input('enter here')
dff[dff['Collections'].str.contains('user',na=False)]
in this code above the user will enter his choice of restaurant for instance user choose 'Bar', and then the code above will search the KEYWORD 'BAR' in the column name "collections" and return only those dataframe which consists of the keyword Bar in them. but this code is not working its returning me an empty dataframe. am using jupyter notebook