Here, we are going to actualize a python program that will print the list in the wake of expelling EVEN numbers.
Given a list, and we need to print the list in the wake of expelling the EVEN numbers in Python.
Example:
Input:
list = [11, 22, 33, 44, 55]
Output:
list after removing EVEN numbers
list = [11, 33, 55]
Rationale:
- Navigate each number in the list by utilizing for…in circle.
- Check the condition for example checks number is distinguishable by 2 or not – to check EVEN, the number must be separable by 2.
- In the event that number is distinguishable by 2 for example Considerably number, expel the number from the list.
- To expel the number from the list, use list.remove() strategy.
Program:
# list with EVEN and ODD number
list = [11, 22, 33, 44, 55]
# print original list
print "Original list:"
print list
# loop to traverse each element in the list
# and, remove elements
# which are EVEN (divisible by 2)
for i in list:
if(i%2 == 0):
list.remove(i)
# print list after removing EVEN elements
print "list after removing EVEN numbers:"
print list
Output:
Original list:
[11, 22, 33, 44, 55]
list after removing EVEN numbers:
[11, 33, 55]