Hey what's up? We are a free website solely relying on advertisement revenue! Please support us by disabling your adBlock for this site and good things will happen!
in Python | 2018-09-18
Difficulty : Beginner
def lucky_sevens(myli): count=0 for el in myli: if el==7: count+=1 else: count=0 if count==3: return True return False