Why is it wrong? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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)

17th May 2022, 6:34 PM
弥安
弥安 - avatar
3 Answers
+ 2
Thank you very much. It's up and running
17th May 2022, 7:02 PM
弥安
弥安 - avatar
0
How to do that
17th May 2022, 6:43 PM
弥安
弥安 - avatar
0
It from intermediate Python 19
17th May 2022, 6:48 PM
弥安
弥安 - avatar