list = ["1", "2", "3"] string= abc1def
How can I check if ANY items of my list is contained within my string?
any(substr in string for substr in list_)