I have a Python list of strings such that,
Input:
li = ['aaa','bbb','aaa','abb','abb','bbb','bbb','bbb','aaa','aaa']
What can I do to generate another list counting the number of consecutive repetitions of any string in the list? For the list above the return list resembles:
Expected Output:
li_count = [['aaa',1],['bbb',1]['abb',2],['bbb',3],['aaa',2]]