How to Remove Even Numbers from a List in Python

In this tutorial, we’ll learn how to program "How to Remove Even Numbers from a List in Python." We’ll focus on identifying and removing all even numbers from a list. The objective is to accurately filter out the even numbers and display the updated list. A sample program will be provided to demonstrate the coding process, making it straightforward and easy to implement. So, let’s get started!

This topic is straightforward to understand. Just follow the instructions I provide, and you'll be able to complete it with ease. The program I'll show you demonstrates the proper way to detect and remove all the even numbers from a list. I'll also provide a simple and efficient method to achieve this effectively. So, let’s start coding!

Getting Started:

First you will have to download & install the Python IDLE's, here's the link for the Integrated Development And Learning Environment for Python https://www.python.org/downloads/.

Creating Main Function

This is the main function of the application. The following code will display a simple GUI in terminal console that will display program. To do this, simply copy and paste these blocks of code into the IDLE text editor.
  1. mylist = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
  2.  
  3.  
  4. while True:
  5.     print("\n================= Remove Even Numbers from a List =================\n\n")
  6.  
  7.     print("Original list:")
  8.     print(mylist)
  9.  
  10.  
  11.     for i in mylist:
  12.         if i % 2 == 0:
  13.             mylist.remove(i)
  14.  
  15.  
  16.     print("\nList after removing EVEN numbers:")
  17.     print(mylist)
  18.  
  19.     opt = input("\nDo you want to try again?(yes/no): ")
  20.  
  21.     if opt.lower() == 'yes':
  22.         ret=False
  23.     elif opt.lower() == 'no':
  24.         ret=True
  25.         print("Exiting program....")
  26.     else:
  27.         print("Please enter yes/no:")
  28.         break
  29.  
  30.     if ret == False:
  31.         continue

This program demonstrates the removal of even numbers from a predefined list. Initially, it displays the original list of integers from 1 to 10. The program iterates through the list, checking each element to see if it is even (i.e., divisible by 2). If a number is even, it is removed from the list.

After processing the list, the program displays the updated list with all even numbers removed. The process is wrapped in a loop, allowing the user to repeat the operation or exit based on their input.

Note: Direct removal while iterating can lead to unexpected results as it modifies the list during traversal.

Output:

There you have it we successfully created How to Remove Even Numbers from a List in Python. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

More Tutorials for Python Language

Python Tutorials

Add new comment