fork download
  1. texto = 'Stack Overflow em Português'
  2.  
  3. for a, b in zip(texto, texto[1:]):
  4. if a == b:
  5. print('Há caracteres iguais em sequência')
  6. break
  7. else:
  8. print('Não há caracteres iguais em sequência')
Success #stdin #stdout 0.04s 9324KB
stdin
Standard input is empty
stdout
Não há caracteres iguais em sequência