Numbers Divisible by 7 and Multiple of 6 Between 1-1000 || Python
In this we are going to see a basic program to find all numbers divisible by 7 and multiple of 6 between 1-1000 in Python Programming Language.



def find():
    for i in range(1,1001):
        if i%7 == 0 and i%6 == 0:
            print(i)

find()

# Coded By DHIRAJ SHELKE


#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post