0
print(5 + 6 % 7)
Hello guys can anyone explain why the output is 11 ? I am confused đ¤
1 Answer
+ 3
% returns reminder
Since you cannot divide 6 by 7 because 7 * 0 + 6 = 6 so reminder is 6
So 5 + 6 = 11
Hello guys can anyone explain why the output is 11 ? I am confused đ¤