How To Check For Divisibility Of A Number By 7

#CHECK IF NUMBER IS DIVISIBLE BY 7



print('DIVISIBILITY OF 7 ')

n=int(input('Enter Number :- '))

if(n/7==int(n/7)):
    print(n,'is divisible by 7.')

else:
    print(n,'is not divisible by 7.')



Made By :-
         Nilay Saraf
    

Comments

Popular Posts