CBSE Class 12 Computer Science Question 58 of 105

Python Revision Tour — Question 12

Back to all questions
12
Question

Question 12

Which of the following are valid operators in Python:

  1. **
  2. */
  3. like
  4. ||
  5. is
  6. ^
  7. between
  8. in

Answers

The valid operators are:

** ⇒ Exponentiation operator
is ⇒ Identity operator
^ ⇒ Bitwise XOR operator
in ⇒ Membership operator

Answer