Evaluate the following expression in python a) 24//6%3
Answers
Answered by
0
It'll give us 1.
24//6 = 4
and, 4%3 = 1
Keep in mind that // operator will return the quotient and % operator will return the remainder.
Similar questions