def next(prev): result = '' curr = prev[0] rest = "" if len(prev) == 1: rest = " " else: rest = prev[1:] + " " counter = 1 for char in rest: if char != curr: result += str(counter) + curr counter = 1 curr = char else: counter += 1 return result def look_and_say(index): first = "1" print first for i in range(index): first = next(first) print first print look_and_say(9)
Run
Reset
Share
Import
Link
Embed
Language▼
English
中文
Python Fiddle
Python Cloud IDE
Follow @python_fiddle
Browser Version Not Supported
Due to Python Fiddle's reliance on advanced JavaScript techniques, older browsers might have problems running it correctly. Please download the latest version of your favourite browser.
Chrome 10+
Firefox 4+
Safari 5+
IE 10+
Let me try anyway!
url:
Go
Python Snippet
Stackoverflow Question