Print Even Numbers using One Line Python Code
In this tutorial, we are going to show How to print even numbers using one line python code. We have added the video tutorial and the source code of the program.
Video Tutorial: Print Even numbers using One Line Python Code
What are Even numbers?
An even number is an integer that is divisible by 2. This means that the integer can be divided evenly by 2 without any remainder. For example, the even numbers 4, 6, 8, 10, 12, and 14 can all be divided evenly by 2
Source Code
# One Liner Even Numbers Python Code print([e1 for e1 in range(11) if e1 % 2 == 0])
Also Read: Python program to create BMI calculator
Explanation
There are a few different ways to check if a number is even. One way is to use the modulus operator, %. The modulus operator returns the remainder of a division operation. For example, 6 % 2 returns 0, because 2 divides evenly into 6 twice, with no remainder. We can use this fact to check if a number is even by testing if the remainder of the number divided by 2 is 0.
The above example demonstrates how to print even numbers using the list comprehension method.