Write a program that counts, in the given list of integers below, the number of occurrences of each integer. loop through the list to assign keys and values to the dictionary. Use must use another loop to print the dictionary values for the output.
Python language preferred
Write a program that counts, in the given list of integers below, the number of occurrences of each integer. loop through the list to assign keys and values to the dictionary. Use must use another loop to print the dictionary values for the output.
list1 = [1,2,3,3,2,4,5,6,3,2,4,5,2,3,4,5,6,3]
Thankyou for your help!
To count the occurrences of each integer in a list, we need to create an empty dictionary, then process each element of list using for loop, now we check the element is in dictionary or not, if we already added that element into dictionary then update its frequency, if element is not in dictionary then set its frequency by 1. At the end of for loop, the list distinct elements are store in dictionary as a key and their occurrence is store as a value. Finally print the keys and their values using another for loop.
Step by step
Solved in 2 steps with 1 images