0
Please do a step by guide to solve this equation. 7%(5//2)
2 Respuestas
+ 1
In Python -
1- 7%(5//2) .... your expression
2- 7%2 .... as on python 5//2=2 (returns only int)
3- 1 .... your answer as 7/2 return 1 as remainder
+ 1
7%(5//2)
= (integer division)
7%2
= (modulus operation)
1