python一个列表根据某个元素前后分割
Posted 辉哥哥~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python一个列表根据某个元素前后分割相关的知识,希望对你有一定的参考价值。
from itertools import groupby
result = [list(g) for k, g in groupby(data, lambda x:x==‘‘) if not k]
print(result)
以上是关于python一个列表根据某个元素前后分割的主要内容,如果未能解决你的问题,请参考以下文章
pycharm中strip、lower、replace函数怎么连用