Question 1
Which operator in python is used to check if two objects refer to the same memory location?
Question 2
What is the result of the expression?
Question 3
Which operator is used to check if a value is present in a sequence, like a list or a string?
Question 4
What is the result of the expression?
Question 5
What is the result of the expression?
apple in [apple, banana, cherry]
Question 6
What is the result of the expression ?
Question 7
Which operator is the negation of the in operator and checks if a value is not present in a sequence?
Question 8
Which operator is used to check if a substring is present in a string?
Question 9
Which operator is used to check if two objects do not refer to the same memory location?
Question 10
What is the result of the expression?
Python not in Hello, Python!