计算列表中字符串的连续重复项 [英] Counting consecutive duplicates of strings from a list

查看:198
本文介绍了计算列表中字符串的连续重复项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个Python字符串列表,

I have a Python list of strings such that,

输入:

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:

预期输出:

li_count = [['aaa',1],['bbb',1]['abb',2],['bbb',3],['aaa',2]]

推荐答案

使用感谢@ user3483203进行改进:

Thank you @user3483203 for improvement:

a = [[i, len([*group])] for i, group in groupby(li)]

这篇关于计算列表中字符串的连续重复项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆