EN
Python - check if string doesn't contain character
0
points
In this article, we would like to show you how to check if string doesn't contain character in Python.
Quick solution:
text = "ABC"
print("D" not in text) # True
Practical example
In this example, we check if D
character is NOT present in the text
string using in
keyword.
text = "ABC"
if "D" not in text:
print("The 'D' character isn't present in the", text)
Output:
The 'D' character isn't present in the ABC