0
using 'continue' how to solve following problem?not getting proper output.numbers divisible by 3 should not be printed
for i in range(1,41): if i%3==0: continue print(i)
2 odpowiedzi
0
You have to put the print function inside the for loop
0
thanx bro