w3resource

Python: Get the items from a given list with specific condition

Python List: Exercise - 164 with Solution

Write a Python program to get items from a given list with specific conditions.

Number of Items of the following list which are even and greater than 73
[12,45,23,67,78,90,45,32,100,76,38,62,73,29,83]
Output:
5

Sample Solution:

Python Code:

def first_index(l1):
    return sum(1 for i in l1 if (i> 45 and i % 2 == 0))

nums = [12,45,23,67,78,90,45,32,100,76,38,62,73,29,83]
print("Original list:")
print(nums)
n = 45
print("\nNumber of Items of the said list which are even and greater than",n)
print(first_index(nums))

Sample Output:

Original list:
[12, 45, 23, 67, 78, 90, 45, 32, 100, 76, 38, 62, 73, 29, 83]

Number of Items of the said list which are even and greater than 45
5

Pictorial Presentation:

Python List: Get the items from a given list with specific condition.

Flowchart:

Flowchart: Get the items from a given list with specific condition.

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:


Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to get the index of the first element which is greater than a specified element.
Next: Write a Python program to split a given list into specified sized chunks.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

Python: Tips of the Day

Decapitalizes the first letter of a string:

Example:

def tips_decapitalize(s, upper_rest=False):
  return s[:1].lower() + (s[1:].upper() if upper_rest else s[1:])
print(tips_decapitalize('PythonTips'))
print(tips_decapitalize('PythonTips', True)) 

Output:

pythonTips
pYTHONTIPS

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook