1. Reverse the letters in a string ? Input: How are you should become Output: woh era ouy 2. Search for a letter or sequence(substring) in a string? Input: yuabjsh Output: ab
Sigiloso
Used regular expressions and an inbuilt function in python, re.search for the substring problem and reversed.