[Solved] a * a//b doesn’t work properly in Python (// Operator)
[ad_1] You probably meant to write a * (a//b). Multiplication happens before division, since it’s on the left and has same priority. [ad_2] solved a * a//b doesn’t work properly in Python (// Operator)