Given a list, and we have to print the list after removing the ODD numbers in Python.
Example:
Input:
list = [11, 22, 33, 44, 55]
Output:
list after removing ODD numbers
list = [22, 44]
Logic:
- Traverse each number in the list by using for...in loop.
- Check the condition i.e. checks number is divisible by 2 or not – to check ODD, number must not be divisible by 2.
- If number is not divisible by 2 i.e. ODD number from the list, use list.remove() method.
Program:
Output
need an explanation for this answer? contact us directly to get an explanation for this answer