Initial Caps
Given a string, return the string in Initial Caps format as shown in the examples.
Sample Code:
def startCase(str):
# Enter your logic here...
Examples:
Input: 'This world shall know code.'
Output: 'This World Shall Know Code.'
Explanation: A format where every word starts with an uppercase letter.
Input: 'Some random english words.'
Output: 'Some Random English Words.'
Explanation: A format where every word starts with an uppercase letter.