I want to know why does the following happen. The code below evaluates right side 1**3 first then 2**1
2**1**3 has the value of 2However, for the below code left side 7//3 is evaluated first then 2*3. Finally 1+6-1=6.
1+7//3*3-1 has the value of 6