ANSWER WITH PYTHON
Write a recursive function that takes a string and returns thereverse of that string. For example, reverse(“string”) = “gnirts”and reverse(“hello there”) = “ereht olleh”. You can use the slicingoperators to extract sections/characters from the string and worktoward a base case.
Expert Answer
An answer will be send to you shortly. . . . .