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’
1 Answer