How to Print All the Odd Numbers in a Range using Python

In this tutorial, we will program 'How to Print All the Odd Numbers in a Range using Python'. We will learn how to print all the possible odd numbers in a range. The main goal here is to create a program that will only print the odd numbers within the specified range. I will provide a sample program to demonstrate the actual coding of this tutorial.

This topic is very easy to understand; just follow the instructions I provide, and you can also do it yourself with ease. The program I will show you covers the basics of programming for printing the odd numbers. I will do my best to provide you with the easiest way printing all the odd numbers in a range. So, let's start with the coding.

Getting Started:

First you will have to download & install the Python IDLE's, here's the link for the Integrated Development And Learning Environment for Python https://www.python.org/downloads/.

Creating Main Function

This is the main function of the application. The following code will display a simple GUI in terminal console that will display program. To do this, simply copy and paste these blocks of code into the IDLE text editor.
  1. ret = False
  2.  
  3. while True:
  4. print("\n================== Print All the Odd Numbers in a Range ==================\n\n")
  5.  
  6.  
  7. lower=int(input("Enter the Lowest number:"))
  8. upper=int(input("Enter the Highest number:"))
  9. for i in range(lower,upper+1):
  10. if(i%2!=0):
  11. print(i)
  12.  
  13.  
  14. opt = input("\nDo you want to try again?(yes/no): ")
  15.  
  16. if opt.lower() == 'yes':
  17. ret=False
  18. elif opt.lower() == 'no':
  19. ret=True
  20. print("Exiting program....")
  21.  
  22. else:
  23. print("Please enter yes/no:")
  24. break
  25.  
  26. if ret == False:
  27. continue

This Python script prompts the user to enter the lowest and highest numbers of a range. It then iterates through the range from the lowest to the highest number, printing all odd numbers within that range. After printing the odd numbers, it asks the user if they want to try again or exit the program.

Output:

The How to Print All the Odd Numbers in a Range using Python source code that I provide can be download below. Please kindly click the download button.

There you have it we successfully created How to Print All the Odd Numbers in a Range using Python. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

More Tutorials for Python Language

Python Tutorials

Tags

Add new comment