You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dictionary: Some useful piece of Code during programming
Counting the occurrence of elements
fromcollectionsimportCounterdefoccurrence(s: str) ->dict:
""" s can be list/string/tuple It will return a dictionary with key as elements and value as their number of occurrences """d=Counter(s)
returnd