30.2 LAB: Reverse a string Write a recursive function called reverse_string() that takes in a string as parameter and returns the string in reversed order. The main function is provided to read a string from the user and call the reverse_string() function. Ex: If the input of the program is: Hello the reverse_string() function returns and the program outputs: Reverse of "Hello" is "olleH". Ex: If the input of the program is: Hello, world! the reverse_string() function returns and the program outputs: Reverse of "Hello, world!" is "!dlrow, olleH". Hint: Move the first character to the end of the returning string and pass the remaining sub-string to the next reverse_string() function call.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question

please solve in python and give code. thankzz

 

 

 

30.2 LAB: Reverse a string
Write a recursive function called reverse_string() that takes in a string as parameter and returns the string in reversed order. The main
function is provided to read a string from the user and call the reverse_string() function.
Ex: If the input of the program is:
Hello
the reverse_string() function returns and the program outputs:
Reverse of "Hello" is "olleH".
Ex: If the input of the program is:
Hello, world!
the reverse_string() function returns and the program outputs:
Reverse of "Hello, world!" is "!dlrow,olleH".
Hint: Move the first character to the end of the returning string and pass the remaining sub-string to the next reverse_string() function call.
Transcribed Image Text:30.2 LAB: Reverse a string Write a recursive function called reverse_string() that takes in a string as parameter and returns the string in reversed order. The main function is provided to read a string from the user and call the reverse_string() function. Ex: If the input of the program is: Hello the reverse_string() function returns and the program outputs: Reverse of "Hello" is "olleH". Ex: If the input of the program is: Hello, world! the reverse_string() function returns and the program outputs: Reverse of "Hello, world!" is "!dlrow,olleH". Hint: Move the first character to the end of the returning string and pass the remaining sub-string to the next reverse_string() function call.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Declaring and Defining the Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning