Answer & Solution
Answer: Option A
Solution:
In Python, Addition (+) and Subtraction (-) operators have the same precedence level.
Multiplication (*) and Division (/) operators have a higher precedence than Addition and Subtraction.
When an expression contains operators with the same precedence, they are evaluated from left to right.
For example, in the expression 3 + 5 - 2, the addition and subtraction are performed from left to right.