Python program to display all the multiples of 3 within the range 10 to 50

 

Python program to display all the multiples of 3 within the range 10 to 50


for i in range(10,50): if (i%3==0): print(i)

Comments