What is the result of % in Python?

前端 未结 19 1737
粉色の甜心
粉色の甜心 2020-11-22 00:57

What does the % in a calculation? I can\'t seem to work out what it does.

Does it work out a percent of the calculation for example: 4 % 2

19条回答
  •  走了就别回头了
    2020-11-22 01:08

    The % (modulo) operator yields the remainder from the division of the first argument by the second. The numeric arguments are first converted to a common type.

    3 + 2 + 1 - 5 + 4 % 2 - 1 / 4 + 6 = 7

    This is based on operator precedence.

提交回复
热议问题