Question: Write a function named is_palindrome(). It will take in a list of strings as its only parameter. It returns a list of boolean values. The

Write a function named is_palindrome(). It will take in a list of strings as its only parameter. It returns a list of boolean values. The boolean values will indicate whether the strings are palindromes. For example, if the given list is ['Madam','A nut for a jar of tuna','I love DSAG'], the function will return [True,True, False].Your function should handle any number of string in the list. Your function should not modify the original listWrite a function named is_palindrome(). It will take in a list of

def is_palindrome (alist): m in 11 12 13 14 15 16 test_list=['Madam', 'A nut for a jar of Tuna', 'I love DSAG'] 17 print(is_palindrome (test_list)) 18 print(test_list) 19 [True, True, False] ['Madam', 'A nut for a jar of Tuna', 'I love DSAG']

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!