Find number is divisible by 5 or not

 

Program to check number is divisible by 5 or not _____


 

 This is our project no 3 it tells you that the number is divisible by 5 or not



d=int(input("Enter the number "))
town=(d%5)
if  town == 0:
      print("The number is divisible by 5  .. then your answer is - ",town )
else:
      print("The number is not divisible by Five ")


0 Comments