What is the output of the following code ?
print(float(44 // 7 + 7 % 3))
Here the operator precedences is in this order: // -> % -> +So 44 // 7 + 7 % 3will be evaluated as(44 // 7) + (7 % 3)
// -> % -> +
44 // 7 + 7 % 3
(44 // 7) + (7 % 3)
Comment here: