I have a list
in Python,
a=[("title","artiste"),
("titl","artste"),
("ttle","titl")]
I want to create a second list; the second list should not include the search term.
How to search whether "titl"
is in the first string of the tuples (just the first string, not the second string) of the three tuples or not?