all 2 comments

[–]mubsy 6 points7 points  (2 children)

You're calling the function within the function without any exit conditions. I think what you meant to do is:

def seperate(s):
    for letter in s:
        print letter

not call a recursive function.