Answers for "list of consecutive numbers python"

1

count consecutive values in python

#count consecutif 1 in list. list exemple l=['1','1','0','1','0','1,'1',1']
cpt=0
    compte=[]
    for i in ch:
        if i=='1':
            cpt +=1
        else:
            compte.append(cpt)
            cpt=0
    compte.append(cpt)
Posted by: Guest on February-28-2021

Code answers related to "list of consecutive numbers python"

Python Answers by Framework

Browse Popular Code Answers by Language