Nuacht

Write a program to print 1 to 50 odd numbers using for loop in python. Coded BY Abhishek D Shelar.
Iterate i from 1 to n using a for loop. Inside the loop: If i is odd, print its value. Increment i to skip the next even number (can also increment by 2 for simplicity).