Operator precedence
In Python, operator precedence refers to the order in which operators are evaluated in an expression. This means certain operations are performed before others when no parentheses are used to define the order explicitly.
Documentation : 6. Expressions — Python 3.13.2 documentation
Reference : Python Operators Precedence Example