Computer Science, asked by amanyadavji7982, 5 months ago

Which one of the following is not an operator in Python?

a) ++ b) += c) -= d) None of the above

Answers

Answered by amourya13
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 sidharthp409
1

Answer:

++ is the correct option (A)

Similar questions