w3resource

Python: Find the item with maximum occurrences in a given list

Python List: Exercise - 110 with Solution

Write a Python program to find the item with the most occurrences in a given list.

Visual Presentation:

Python List: Find the item with maximum occurrences in a given list.

Sample Solution:

Python Code:

# Define a function 'max_occurrences' that finds the item with the maximum occurrences in a list
def max_occurrences(nums):
    # Initialize 'max_val' to 0 and 'result' to the first item in the list
    max_val = 0
    result = nums[0]
    
    # Iterate through the elements in the 'nums' list
    for i in nums:
        # Count the occurrences of the current element 'i' in the list
        occu = nums.count(i)
        
        # Check if the number of occurrences is greater than the current maximum
        if occu > max_val:
            # Update 'max_val' and 'result' if a higher occurrence is found
            max_val = occu
            result = i
    
    # Return the item with the maximum occurrences
    return result

# Create a list 'nums' with integers
nums = [2,3,8,4,7,9,8,2,6,5,1,6,1,2,3,4,6,9,1,2]

# Print a message indicating the original list
print ("Original list:")
# Print the contents of the 'nums' list
print(nums)

# Print a message indicating the item with the maximum occurrences in the list
print("\nItem with maximum occurrences of the said list:")
# Call the 'max_occurrences' function with 'nums' and print the result
print(max_occurrences(nums)) 

Sample Output:

Original list:
[2, 3, 8, 4, 7, 9, 8, 2, 6, 5, 1, 6, 1, 2, 3, 4, 6, 9, 1, 2]

Item with maximum occurrences of the said list:
2

Flowchart:

Flowchart: Find the item with maximum occurrences in a given list.

Python Code Editor:

Previous: Write a Python program to rotate a given list by specified number of items to the right or left direction.
Next: Write a Python program to access multiple elements of specified index from a given list.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/list/python-data-type-list-exercise-110.php