Find the division remainder of a number

前端 未结 12 1204
刺人心
刺人心 2020-11-28 07:30

How could I go about finding the division remainder of a number in Python?

For example:
If the number is 26 and divided number is 7, then the division remainder

12条回答
  •  迷失自我
    2020-11-28 08:30

    Use the % instead of the / when you divide. This will return the remainder for you. So in your case

    26 % 7 = 5
    

提交回复
热议问题