I have a list:
my_list = [\'abc-123\', \'def-456\', \'ghi-789\', \'abc-456\']
and want to search for items that contain the string \'
\'
Use the __contains__() method of Pythons string class.:
a = ['abc-123', 'def-456', 'ghi-789', 'abc-456'] for i in a: if i.__contains__("abc") : print(i, " is containing")