Python program to print even numbers in a list

In this article, we will learn to find the even number from the given list and print it in the list format.

How to check whether the given is even or not?

If a number is completely divisible by 2, then the given number is even. 

We find the even number in a list using 1 method:

  1. Using loop
Input : [1,2,3,4,5,6]

Output : [2,4,6]

Using loop

Explanation

  1. First, we initialize a list.
  2. Then we create a new list to store the evens number (named result).
  3. After, that we will run the loop to get all elements of the list one by one.
  4. Then, we will check each element, whether it's completely divisible by the 2 or not.
  5. We will check using the modulus(%) operator.
  6. If the element is completely divisible by 2, then append to the new list result.
  7. And after all, print the result list.

Program

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# list
list = [1,2,3,4,5,6,7,8]

# result list
result = []

# iterate all element of list 
for ele in list:
    # check for even 
    if ele%2==0:
        result.append(ele) # append the even number in result list

# print the result 
print(result)

Output

[2, 4, 6, 8]

Conclusion

In this article, we have learned how to create a python program that prints even numbers in a list using simple methods with the help of a step-by-step explanation.

Next Post Previous Post
No Comment
Add Comment
comment url