Strings comparison
Given two strings, return True if both the given strings are equivalent to each other, regardless of their case.
Sample Code:
def compStr(str1,str2):
# Enter your logic here...
Examples:
Input: 'Codetisan','codetisan'
Output: True
Explanation: The first input is equivalent to the second one, regardless of the letter case.
Input: 'code','cODde'
Output: False
Explanation: The two strings are not equivalent to each other.