In this program, a list is accepted with the mixture of odd and even elements and based on whether the element is even or odd, it is split into two different lists.
Examples:
Input : [8, 12, 15, 9, 3, 11, 26, 23] Output : Even lists: [8, 12, 26] Odd lists: [15, 9, 3, 11, 23] Input : [2, 5, 13, 17, 51, 62, 73, 84, 95] Output : Even lists: [2, 62, 84] Odd lists: [5, 13, 17, 51, 73, 95]
# Python code to split into even and odd lists # Function to split def Split(mix):
ev_li = []
od_li = []
for i in mix:
if (i % 2 = = 0 ):
ev_li.append(i)
else :
od_li.append(i)
print ( "Even lists:" , ev_li)
print ( "Odd lists:" , od_li)
# Driver Code mix = [ 2 , 5 , 13 , 17 , 51 , 62 , 73 , 84 , 95 ]
Split(mix) |
chevron_right
filter_none
Output:
Even lists: [2, 62, 84] Odd lists: [5, 13, 17, 51, 73, 95]
Alternate Shorter Solution :
def Split(mix):
ev_li = [ele for ele in li_in if ele % 2 = = 0 ]
od_li = [ele for ele in li_in if ele % 2 ! = 0 ]
print ( "Even lists:" , ev_li)
print ( "Odd lists:" , od_li)
# Driver Code mix = [ 2 , 5 , 13 , 17 , 51 , 62 , 73 , 84 , 95 ]
Split(mix) |
chevron_right
filter_none
Output:
Even lists: [2, 62, 84] Odd lists: [5, 13, 17, 51, 73, 95]
Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course.
Practice Tags :