usingMaths.com
Demonstrating and showing pupils and students one application of Mathematics.







<< PreviousNext >>

How to Generate Odd Numbers in Python for Kids



Understanding Odd Numbers in Math with Python

Odd numbers are numbers that are not divisible by 2.

They include:

1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, ...

In this beginner-friendly Maths Python tutorial for kids, we’ll explore how to list odd numbers using loops and conditions — perfect for primary school students learning to code.
To generate odd numbers in Python, we use a 'while' loop combined with a conditional statement. This simple Python exercise will help you understand number patterns and logic.

Create a new module file; File, New File.
Call it oddNumbers.py.
Type out the adjoining Python algorithm that lists odd numbers.



Note: You can comment out the evenNumbers Python object code in the main class from the previous lesson or simply continue from where it stopped.



Code for Odd Number List with Input in Python

For a little more flexibility, let's add an input mechanism to our Python code for odd numbers.

All we need is a way to ask the user for input to limit the range of odd numbers.
For this purpose, we'll use the input() function in Python.









<< PreviousNext >>