Write a function that takes a string as a parameter and determines the string is symmetrical around its midpoint. For ex
Posted: Mon Mar 21, 2022 4:42 pm
Write a function that takes a string as a parameter and determines the string is symmetrical around its midpoint. For example: "abccba" or "abcba" are such strings. The function should return a boolean. Use the function to test if two strings read from the user are symmetrical.