write a Python program to find even elements in a list
Answers
Answered by
1
Explanation:
Python program to print even numbers in a list
Approach 1 − Using enhanced for loop. Example. list1 = [11,23,45,23,64,22,11,24] # iteration for num in list1: # check if num % 2 == 0: print(num, end = " ") ...
Approach 2 − Using filter & lambda function. Example. list1 = [11,23,45,23,64,22,11,24] # lambda exp. ...
Approach 3 − Using list comprehension. Example.
Similar questions
Math,
2 months ago
Physics,
2 months ago
Hindi,
3 months ago
Physics,
3 months ago
India Languages,
9 months ago
CBSE BOARD X,
9 months ago