Advertisement
DaniDori

Untitled

Jan 21st, 2022
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #Открываем файл
  2. #f=open('C:/Users/DaniDori/Downloads/24.txt', 'r')
  3. f="xxyxy"
  4. maxlen=0
  5. lastChar=0
  6. count=0
  7.  
  8. for i in f:
  9. if i!=lastChar:
  10. count+=1
  11. print(count)
  12. else:
  13. if count>maxlen:
  14. maxlen=count
  15. count=1
  16. lastChar=i
  17. if count>maxlen:
  18. maxlen=count
  19. print(maxlen)
  20.  
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement