Source Code:
(back to article)
string = "Hello, World!" word = "World" if word in string: print(f"'{word}' ist im String '{string}' enthalten") else: print(f"'{word}' ist nicht im String '{string}' enthalten")
Result:
Report an issue