fork download
  1. s = '''Know you see that they been tryna be me lately I'm a heavy hitter like Gervonta Davis That shit ain't gon' save 'em, leave 'em on the pavement All I know is get this motherfuckin' paper
  2.  
  3. [Chorus: Lil Baby] Thou shall not try one of us, if they do, I'ma bust Please don't reach for no chain Not 'bout the set, but it's more 'bout respect If they get me upset, they gon' die, that's on gang
  4.  
  5. Know you see that they been tryna be me lately I'm a heavy hitter like Gervonta Davis That shit ain't gon' save 'em, leave 'em on the pavement All I know is get this motherfuckin' paper
  6.  
  7.  
  8.  
  9.  
  10. [Chorus: Lil Baby] Thou shall not try one of us, if they do, I'ma bust Please don't reach for no chain Not 'bout the set, but it's more 'bout respect If they get me upset, they gon' die, that's on gang'''
  11.  
  12.  
  13.  
  14. def findall(sub, string):
  15. index = -1
  16. try:
  17. while True:
  18. index = string.index(sub, index + 1)
  19. yield index
  20. except ValueError:
  21. pass
  22.  
  23. for i in findall('\n\n', s):
  24. print(i)
Success #stdin #stdout 0.02s 9052KB
stdin
Standard input is empty
stdout
185
388
575
576
577
578