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