0
Why is it wrong?
def spell(txt,n): if n==0: return else: print(txt[n-1]) print(spell(txt,n-1)) txt = input() n = len(txt) spell(txt,n)
5 Respuestas
def spell(txt,n): if n==0: return else: print(txt[n-1]) print(spell(txt,n-1)) txt = input() n = len(txt) spell(txt,n)