I have DataFrame in Python Pandas like below:
sentence
------------
I like it
+1
One :-) :)
hah
I need to select only rows containing emoticons or emojis, so as a result I need something like below:
sentence
------------
+1
One :-) :)
How can I do that in Python ?