import re input = raw_input() items = [] idx = 0 while idx < len(input): char = input[idx] pattern = re.compile(r"[^" + char + "]") match = pattern.search(input, idx) if match: items.append( (match.start() - idx, char) ) idx = match.start() else: items.append( (len(input) - idx, char) ) break print items bonus = '' for item in items: bonus += item[0] * item[1] print bonus
Heeeeelllllooooo nurse!
[(1, 'H'), (5, 'e'), (5, 'l'), (5, 'o'), (1, ' '), (1, 'n'), (1, 'u'), (1, 'r'), (1, 's'), (1, 'e'), (1, '!')] Heeeeelllllooooo nurse!