I have let's say following DF:
|Tweet|
|bla bla bad| 
|bla bla good|
From that I want to create something like:
|Tweet|           |Sentiment|
|bla bla bad|     |negative|
|bla bla good|    |positive|
I can search for string in a column with df[df['Tweet'].str.contains("bad|sad", na=False)] but how can I then create new column classifying them?
Thank you