In this we are going to see a program to check whether a Number is Divisible by 7 in Python Programming Language.
num = int(input("Enter The Number : "))
if num % 7 == 0:
print("Divisible By 7")
else:
print("Not Divisible By 7")
# Coded By DHIRAJ SHELKE
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP