w3resource

Python: List of integers with exactly two occurrences of nineteen and at least three occurrences of five


Check Nineteen and Five Occurrences

Write a Python program to find a list of integers with exactly two occurrences of nineteen and at least three occurrences of five. Return True otherwise False.

Input:
[19, 19, 15, 5, 3, 5, 5, 2]
Output:
True

Input:
[19, 15, 15, 5, 3, 3, 5, 2]
Output:
False

Input:
[19, 19, 5, 5, 5, 5, 5]
Output:
True

Visual Presentation:

Python: List of integers with exactly two occurrences of nineteen and at least three occurrences of five.
Python: List of integers with exactly two occurrences of nineteen and at least three occurrences of five.
Python: List of integers with exactly two occurrences of nineteen and at least three occurrences of five.

Sample Solution:

Python Code:

# License: https://bit.ly/3oLErEI

# Define a function named 'test' that takes a list 'nums' as input
def test(nums):
    # Check if the count of 19 in 'nums' is equal to 2 and the count of 5 is greater than or equal to 3
    return nums.count(19) == 2 and nums.count(5) >= 3

# Create a list 'nums' with specific elements
nums = [19, 19, 15, 5, 3, 5, 5, 2]

# Print the original list
print("Original list:")
print(nums)

# Print the result of the test function applied to the 'nums' list
print("Check two occurrences of nineteen and at least three occurrences of five in the said list:")
print(test(nums))

# Create a different list 'nums' with specific elements
nums = [19, 15, 15, 5, 3, 3, 5, 2]

# Print the original list
print("\nOriginal list:")
print(nums)

# Print the result of the test function applied to the modified 'nums' list
print("Check two occurrences of nineteen and at least three occurrences of five in the said list:")
print(test(nums))

# Create another list 'nums' with specific elements
nums = [19, 19, 5, 5, 5, 5, 5]

# Print the original list
print("\nOriginal list:")
print(nums)

# Print the result of the test function applied to the modified 'nums' list
print("Check two occurrences of nineteen and at least three occurrences of five in the said list:")
print(test(nums))

Sample Output:

Original list:
[19, 19, 15, 5, 3, 5, 5, 2]
Check two occurrences of nineteen and at least three occurrences of five in the said list:
True

Original list:
[19, 15, 15, 5, 3, 3, 5, 2]
Check two occurrences of nineteen and at least three occurrences of five in the said list:
False

Original list:
[19, 19, 5, 5, 5, 5, 5]
Check two occurrences of nineteen and at least three occurrences of five in the said list:
True

Flowchart:

Flowchart: Python - List of integers with exactly two occurrences of nineteen and at least three occurrences of five.

For more Practice: Solve these Related Problems:

  • Write a Python program that verifies a list contains exactly two occurrences of 19 and at least three occurrences of 5 using the count() method.
  • Write a Python program to determine if a list of integers meets the condition of exactly two 19's and three or more 5's using dictionary frequency counts.
  • Write a Python program that implements this check without using built-in count(), by iterating through the list and tracking occurrences.
  • Write a Python program to recursively verify that a list has exactly two occurrences of 19 and at least three occurrences of 5.

Go to:


Previous: Python Programming Puzzles Exercises Home.
Next: Check the length and the fifth element occurs twice in a list.

Python Code Editor :

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

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.