“String in List Python” Code-Antworten

String in List Python

string = "hello"
list = ["bye", "kasd", "hello", "day", "hel"]

if string in list:
    print(f"Found '{string}' in '{list}'!")
else:
	print(f"Couldnt find '{string}' in '{list}'!")
    
>>> Found 'hello' in '["bye", "kasd", "hello", "day", "hel"]'!
ProxyBlade

Python finden String in der Liste

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

isBInList = "b" in list1 # True
Shy Stag

Ähnliche Antworten wie “String in List Python”

Fragen ähnlich wie “String in List Python”

Weitere verwandte Antworten zu “String in List Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen