Recherche de chaîne Array Python
some_list = ['abc-123', 'def-456', 'ghi-789', 'abc-456']
if any("abc" in s for s in some_list):
# whatever
Yellowed Yacare
some_list = ['abc-123', 'def-456', 'ghi-789', 'abc-456']
if any("abc" in s for s in some_list):
# whatever
my_list = ['abc-123', 'def-456', 'ghi-789', 'abc-456']