Enrol to start learning
Reading is open to everyone. Enrolling is free, and it is what unlocks the audio lessons, practice tests and progress tracking.
4.6.2. Example 2: Check Even or Odd
Interactive Audio Lesson
Unlock the classroom podcast
The transcript is above and free to read. A free account plays the conversation back.
Create a free accountToday, we're going to learn how to check whether a number is even or odd using a simple Python program. First, let's understand what the modulo operator does. Can anyone tell me what the modulo operator is?
Isn't the modulo operator used to find the remainder of a division?
Exactly, Student_1! For example, when we divide 5 by 2, the remainder is 1. So, we can use % to check if a number is even or odd. If num % 2 equals 0, the number is even. Otherwise, it's odd. Can someone provide an example of what that looks like in Python?
Could you use 4 as an example? If we do 4 % 2, it equals 0, so it's even!
Great illustration, Student_2! It’s a simple but powerful way to check conditions in programming.
Unlock the classroom podcast
The transcript is above and free to read. A free account plays the conversation back.
Create a free accountNow, let’s write our program together. First, we need to get the user's input. What function do we use to take input in Python?
We can use the input() function!
That's correct, Student_3! Let's write the first line: num = int(input('Enter a number: ')). This will store the input as an integer in the variable num. What should we do next?
Now we need to add the if condition to check if this number is even or odd.
Right, Student_4! So we write: if num % 2 == 0: followed by the code to print 'Even'. In the else part, we'll print 'Odd'.
So the complete program prints whether the entered number is even or odd?
Exactly! Let’s summarize what we learned: We used input to capture a number, applied the modulo operator to check evenness, and created an if-else structure for decision-making.
Unlock the classroom podcast
The transcript is above and free to read. A free account plays the conversation back.
Create a free accountNow that we’ve written our program, let’s test it out! What types of numbers should we test?
We should try both even and odd numbers to see if the program works correctly!
Good thinking! If we test with 8, what do you expect the output to be?
The output should say 'Even'!
Correct! And if we input 7, what should happen?
It should say 'Odd'!
Nice job! Testing different inputs helps us ensure our program functions as expected. Remember, always test extensively!
Overview
Short Summary
This section provides a practical example of a simple program in Python that checks if a number is even or odd.
Medium Summary
The section illustrates how to use the modulo operator to determine whether an input number is even or odd through a straightforward Python program, emphasizing the use of conditional statements for decision-making in programming.
Detailed Summary
Detailed Summary
In this section, we explore an example of a simple program written in Python that checks whether a given number is even or odd. The program utilizes the modulo operator (%), which gives the remainder of a division. When a number is divided by 2, if the remainder is 0, the number is classified as even; otherwise, it's odd.
Key Concepts:
- Input Handling: The program begins by requesting input from the user.
- Conditional Statements: It uses an
if-elseconstruct to make decisions based on the remainder of the number when divided by 2. - Output Display: Finally, it provides output to the user indicating whether the given number is even or odd.
This practical example helps reinforce fundamental programming concepts such as variables, control structures, and input/output operations.
Audio Book
Unlock the audio lesson
The script is above and free to read. A free account plays it back, in the voice you pick.
Create a free accountnum = int(input("Enter a number: "))Detailed Explanation
In this chunk, we are asking the user to enter a number. The input() function captures the user's input as a string, and the int() function converts that string into an integer so that we can perform numerical operations on it.
Examples & Analogies
Think of this step as asking someone their age. When they tell you '15', you need to convert that spoken word into a number (15) to understand how old they actually are.
Unlock the audio lesson
The script is above and free to read. A free account plays it back, in the voice you pick.
Create a free accountif num % 2 == 0:
print("Even")
else:
print("Odd")Detailed Explanation
This chunk contains a conditional statement that checks if the number is even or odd. The % operator calculates the remainder when num is divided by 2. If the remainder is 0, the number is even, and 'Even' is printed. If the remainder is not 0, the number is odd, and 'Odd' is printed instead.
Examples & Analogies
Imagine you have a group of friends, and you want to pair them up for a game. If you have an even number of friends, everyone gets a partner, which is like the number being 'Even'. But if one friend is left out, they don't have a partner, which represents the number being 'Odd'.
--
Key Concepts
Core takeaways and short definitions to help you quickly recall the key ideas from this section.
Input Handling: The program begins by requesting input from the user.
Conditional Statements: It uses an if-else construct to make decisions based on the remainder of the number when divided by 2.
Output Display: Finally, it provides output to the user indicating whether the given number is even or odd.
This practical example helps reinforce fundamental programming concepts such as variables, control structures, and input/output operations.
Examples
Memory Aids
Interactive tools to help you remember key concepts
Stories
Memory Tools
Flash Cards
Glossary
Even Number
An integer that is divisible by 2 with no remainder.
Odd Number
An integer that is not divisible by 2 without a remainder.
Modulo Operator
A mathematical operator that returns the remainder of a division operation.
Conditional Statement
A programming construct that allows execution of certain code based on whether a condition evaluates to true or false.
Input
Data that is received by a program from the user.
Output
The data that is sent from a program to the user.