Home »
Python »
Python Programs
Python | Program to Create two lists with EVEN numbers and ODD numbers from a list
Here, we will learn how to create two lists with EVEN and ODD numbers from a given list in Python? To implement this program, we will check EVEN and ODD numbers and appends two them separate lists.
By IncludeHelp Last updated : June 22, 2023
Problem statement
Given a list, and we have to create two lists 1) list with EVEN numbers and 2) list with ODD numbers from given list in Python.
Example
Consider the below example without sample input and output:
Input:
List1 = [11, 22, 33, 44, 55]
Output:
List with EVEN numbers: [22, 44]
List with ODD NUMBERS: [11, 33, 55]
Logic
To create lists with EVEN and ODD numbers, we will traverse each element of list1 and append EVEN and ODD numbers in two lists by checking the conditions for EVEN and ODD.
Python program to Create two lists with EVEN numbers and ODD numbers from a list
# declare and assign list1
list1 = [11, 22, 33, 44, 55]
# declare listOdd - to store odd numbers
# declare listEven - to store even numbers
listOdd = []
listEven = []
# check and append odd numbers in listOdd
# and even numbers in listEven
for num in list1:
if num % 2 == 0:
listEven.append(num)
else:
listOdd.append(num)
# print lists
print("list1: ", list1)
print("listEven: ", listEven)
print("listOdd: ", listOdd)
Output
list1: [11, 22, 33, 44, 55]
listEven: [22, 44]
listOdd: [11, 33, 55]
Learn more about the lists: Python List Tutorial
Python List Programs »