I want to use recursion to reverse a string in python so it displays the characters backwards (i.e \"Hello\" will become \"olleh\"/\"o l l e h\".
I wrote one that do
If this isn't just a homework question and you're actually trying to reverse a string for some greater goal, just do s[::-1].
s[::-1]