Which one of the following is not an operator in Python?
a) ++ b) += c) -= d) None of the above
Answers
Answered by
0
Explanation:
Option A is not operator in Python
Operator Example Equivalent Statement
Operator Example Equivalent Statement+= x += 4 x = x + 4
x = x + 4-= x -= 4 x = x - 4
x = x - 4*= x *= 4 x = x * 4
x = x * 4/= x /= 4 x = x / 4
x = x / 4//= x //= 4 x = x // 4
x = x // 4%= x %= 4 x = x % 4
x = x % 4**= x **= 4 x = x ** 4
Answered by
1
Answer:
++ is the correct option (A)
Similar questions