Python finden String in der Liste
list1 = ["a", "b", "c"]
isBInList = "b" in list1 # True
Shy Stag
list1 = ["a", "b", "c"]
isBInList = "b" in list1 # True