Answers for "check for 3 consecutive python numbers"

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
0

python consecutive numbers difference between

[y-x for x, y in zip(A[:-1], A[1:])] 

>>> A = [1, 10, 100, 50, 40]
>>> [y-x for x, y in zip(A[:-1], A[1:])]
[9, 90, -50, -10]
Posted by: Guest on September-09-2020

Code answers related to "check for 3 consecutive python numbers"

Python Answers by Framework

Browse Popular Code Answers by Language