арифметика

Arithmetic operations in Python are right-to-left, not left-to-right?

A simple example in Python caused me confusion: d = 15.961599999999999 d ** 1.5 >>>63.76973829534582 d ** 0.5 ** 3 ... of 0.5 ** 3, and only then d ** (0.5 ** 3). Shouldn't arithmetic operations be performed from left to right? (d ** 0.5) ** 3