I have a list:
originalList = ['Item1', 'Item1', 'Item1', 'Item2', 'Item2', 'Item3', 'Item4']
I need to create two lists based off of the originalList
The first list I need, should list all unique items, such as:
['Item1', 'Item2', 'Item3', 'Item4']
While the other should list the count of each unique value:
[3, 2, 1, 1]
Please help