Computer Science, asked by nikita3525, 4 months ago

Write a program in python to display numbers from 1 to 100 using a loop. It should display ‘pop’ if any number in the

loop is divisible by 11.​

Answers

Answered by yesiamin6
2

Answer:

for i in range(0,101):

print("\n",i)

if(i%11==0):

print("POP & NUMBER IS ", i) ;

Explanation:

HOPE IT HELPS YOU..

Similar questions