使用条件从模运算中测试余数

时间:2017-10-04 22:13:38

标签: python if-statement conditional

接收一个数字并指示其除以3时的余数是0,1还是2.

我的代码:

EmojiconsFragment

如何测试模数的结果以确定数字是否可以被3整除?

1 个答案:

答案 0 :(得分:1)

使用if测试%操作中的剩余部分:

number = int(input("Please enter the number"))
if number % 3:   # is true if the remainder is 1 or 2
    print('Not divisible')
else:
    print('Divisible')