The Art of Data Structures Recursion

13.2.3 Example: String Reversal Python lists have a built-in method that can be used to reverse thelist. Sup-pose that you want to compute the reverse of a string. One way to handle this problem effectively would be to convert the string into a list of characters, re-verse the list, and turn the list back into a string. Using recursion, however, we ................
................