Background:
Example list: mylist = ['abc123', 'def456', 'ghi789']
I want to retrieve an element if there’s a match for a substring, like abc
Code:
sub = 'abc'
print any(sub in mystring for mystring in mylist)
above prints True if any of the elements in the list contain the pattern.
I would like to print the element which matches the substring. So if I’m checking 'abc' I only want to print 'abc123' from list.
If you want them separated by newlines:
Full example, with case insensitivity: