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]]
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…