Question 2: Write a python3 code to check if a string is palindrome or not? Note: A string is said to be palindrome if t
Posted: Fri Jul 01, 2022 5:33 am
Question 2: Write a python3 code to check if a string is palindrome or not? Note: A string is said to be palindrome if the reverse of the string is the same as string. For example, "radar" is a palindrome, but "radix" is not a palindrome. Run 1: Run 2: Enter a String: Malayalam Enter a String: geeks It is a palindrome It is not a palindrome 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 1 | Page