Python - Operators and Expression Evaluation
What will be the output of this code?
text = "hello world"
print('w' in text)
print('z' not in text)text = "hello world"
print('w' in text)
print('z' not in text)'w' in text is True.'z' not in text is True.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions