This is a Python Program to put the even and odd elements in a list into two different lists.
The program takes a list and puts the even and odd elements in it into two separate lists.
1. Take in the number of elements and store it in a variable.
2. Take in the elements of the list one by one.
3. Use a for loop to traverse through the elements of the list and an if statement to check if the element is even or odd.
4. If the element is even, append it to a separate list and if it is odd, append it to a different one.
5. Display the elements in both the lists.
6. Exit.
Here is source code of the Python Program to put the even and odd elements in a list into two different lists. The program output is also shown below.
a=[] n=int(input("Enter number of elements:")) for i in range(1,n+1): b=int(input("Enter element:")) a.append(b) even=[] odd=[] for j in a: if(j%2==0): even.append(j) else: odd.append(j) print("The even list",even) print("The odd list",odd)
1. User must enter the number of elements and store it in a variable.
2. User must then enter the elements of the list one by one using a for loop and store it in a list.
3. Another for loop is used to traverse through the elements of the list.
4. The if statement checks if the element is even or odd and appends them to separate lists.
5. Both the lists are printed.
Case 1: Enter number of elements:5 Enter element:67 Enter element:43 Enter element:44 Enter element:22 Enter element:455 The even list [44, 22] The odd list [67, 43, 455] Case 2: Enter number of elements:3 Enter element:23 Enter element:44 Enter element:99 The even list [44] The odd list [23, 99]
Sanfoundry Global Education & Learning Series – Python Programs.
To practice all Python programs, here is complete set of 150+ Python Problems and Solutions.
- Check Python Books
- Apply for Python Internship
- Check Information Technology Books
- Practice Programming MCQs
- Apply for Programming Internship