Which of the following is an example of an augmented operator in Python?
2026
Which of the following is an example of an augmented operator in Python?
- A.
<
- B.
not in
- C.
and
- D.
**=
Attempted by 301 students.
Show answer & explanation
Correct answer: D
An augmented assignment operator in Python combines an operation with variable assignment, such as += or **=. Option 3 (**=) is the correct example of an augmented exponentiation operator. Other options represent comparison, membership, or logical operators which do not perform assignment.