- Python program to check whether the string is Symmetrical or Palindrome
- Python program to find uncommon words from two Strings
- Write a Python program to add ‘ing’ at the end of a given string (length should be at least 3). If the given string already ends with ‘ing’ then add ‘ly’ instead. If the string length of the given string is less than 3, leave it unchanged. Example:- Sample String : ‘abc’ Expected Result : ‘abcing’ Sample String : ‘string’ Expected Result : ‘stringly’
Python program to check whether the string is Symmetrical or Palindrome Python program to find uncommon words from two Strings …
Share
1. Python program to check whether the string is Symmetrical or Palindrome
Answer: Go through below link
2. Python program to find uncommon words from two Strings
Answer: Go through below link
3. Write a Python program to add ‘ing’ at the end of a given string (length should be at least 3). If the given string already ends with ‘ing’ then add ‘ly’ instead.
Answer: Go through below link