a * a//b doesn't work properly in Python (// Operator)

You probably meant to write a * (a//b). Multiplication happens before division, since it’s on the left and has same priority.

Leave a Comment