How do I remove an emoji from every item in a list?

Viewed 19

I have a list full of titles but there is always a fire emoji in front of the title. I want to remove all fire emojis.

example:

title_list = [
    ' Athabasca Falls in Jasper National Park',
    ' A Chinese moon moth',
    ' The largemouth wrasse has an incredibly long jaw, which is used to attack potential prey.',
    ' seal and penguin fronting up.',
    ' A couple of slugs protecting their eggs.'
]

what i have tried

fire = ['']

for title in list(title_list):
    if title in fire:
        title_list.remove(fire)
0 Answers
Related