Python trouver la chaîne dans la liste

list1 = ["a", "b", "c"]

isBInList = "b" in list1 # True
Shy Stag