python object dictionary or list collections code example
Example: python counting dictionary
counts = dict()
for i in items:
counts[i] = counts.get(i, 0) + 1
counts = dict()
for i in items:
counts[i] = counts.get(i, 0) + 1