Question: CSE/IT 107L Lab 8: Recursion 6 Exercises Exercise 6.1 (design, palindrome.py). Before attempting to code this problem, create a file design that contains some analysis
CSE/IT 107L Lab 8: Recursion 6 Exercises Exercise 6.1 (design, palindrome.py). Before attempting to code this problem, create a file design that contains some analysis of how you think the problem will be solved. Examples include but are not limited to: a flowchart of events in the program, pseudocode, or a step-by-step process written in plain English. If you choose to scan your design, please make sure that it is legible. Write a recursive function that determines whether a string is a palindrome. A palindrome is a word that is the same forwards and backwards, for example "abba", "racecar", or "amanaplan- panama". The function should take in only one argument (the string to check) and it should return either True or False There are easier ways to check if a string is a palindrome, but your function must be recursive
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
