30秒学会 Python 片段 · 2023年7月9日

30秒学会 Python 片段 – Number is divisible

Checks if the first numeric argument is divisible by the second one.

  • Use the modulo operator (%) to check if the remainder is equal to 0.

代码实现

def is_divisible(dividend, divisor):
  return dividend % divisor == 0

使用样例

is_divisible(6, 3) # True

翻译自:https://www.30secondsofcode.org/python/s/is-divisible