What is the result of % in Python?

前端 未结 19 1695
粉色の甜心
粉色の甜心 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:31

    % is modulo. 3 % 2 = 1, 4 % 2 = 0

    / is (an integer in this case) division, so:

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

提交回复
热议问题