Skip to main content
Search
Search This Blog
learn coding
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
September 15, 2022
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
Popular Posts
September 25, 2022
automate the boring stuff with python book pdf
September 23, 2022
intro to python book (for computer science and data science)pdf download
Comments
Post a Comment