Page 1 of 1

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
by answerhappygod
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 1
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 1 (43.97 KiB) Viewed 42 times
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