Here, we will figure out how to make two lists with EVEN and ODD numbers from a given list in Python? To execute this program, we will check EVEN and ODD numbers and adds two them separate lists.
Given a list, and we need to make two lists 1) list with EVEN numbers and 2) list with ODD numbers from given list in Python.
Example:
Input:
List1 = [11, 22, 33, 44, 55]
Output:
List with EVEN numbers: [22, 44]
List with ODD NUMBERS: [11, 33, 55]
Rationale:
To make lists with EVEN and ODD numbers, we will cross every component of list1 and annexe EVEN and ODD numbers in two lists by checking the conditions for EVEN and ODD.
Program:
# 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]