I have a list that contains elements and want to delete some elements that has particular keyword.
For example:
List contains: list = ['red rose','blue rose','red color','yellow paper']
And I'm looking for deleting lists with keyword 'RED' and get output as
Output: ['blue rose', 'yellow paper']
Thank you.