Computer Science, asked by ish6666, 1 day ago

Write a python program to print all numbers from 1 to100 which are divisible by 7 .

Answers

Answered by itzAwesomeSoul10
3

Answer:

for i in range(101):

if i%7==0 or i==range(7,98,10):

print(i)

Similar questions