Question: Using python !!! Problem #2 (25 points): Create a function named: reverse_string() that takes a string passed to it and returns that string with the
Using python !!!

Problem #2 (25 points): Create a function named: reverse_string() that takes a string passed to it and returns that string with the characters in reverse order. Then create an ispalindome.V) function that takes the string passed to it and returns true if the string is a palindrome and otherwise returns false (a palindrome is a string that reads the same forward as backwards, such as 'eye' or 'level'). The is Ralindome. method needs to use the reverse string() method. Note, you may assume that the string passed to is palindomel) does not have any spaces in it. Additionally, make sure you have fully formed docstrings for the reverse string() and is palindrome () functions. Assume all input strings to the is.palindome () function are lower case
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
