每日python练习[2021.7.15](python中判断一个数能否被4整除)

n=int(input())

if n%4==0:
    print('能被4整除')
else:
    print('不能被4整除')

你可能感兴趣的:(python)