Im stuck with this exercise, because if i wrote with shortcut operator the result is 1, therefor is 9
a = 6
b = 3
a /= 2 * b
print(a)
a = a / 2 * b [result 9] a /= 2 * b [result 1]
BUT if i do this exercise with * and after / like this:
a *= 2 / b
Why in this case they dont do (2/b) first?