Question-131: When you run below program, then what would be printed on console?
listA= [1,2,3,4,5]
print (5 in listA)
print (6 not in listA)
- True
True
2.Get all Questions and Answer from here
3.You need to have paid subscription to access all questions
4.Thanks for considering Python Certification Material
Answer: A
Exp:
in and not-in operations on list
- Python has two operators in and not in.
-
You can access to full explanation to question and answer from this page.