Starting elements in String
Return true if the given string starts with 'Code'.
Sample Code:
def startsWith(str):
# Enter your logic here...
Examples:
Input: 'Codetisan'
Output: True
Explanation: 'Codetisan' starts with 'Code'.
Input: 'meow'
Output: False
Explanation: 'meow' does not start with 'Code'.