Capitalize 2.0

Report a typo

Read input twice. Capitalize only the first word in the first string. After this, capitalize each word in the second one. Print the resulting strings each on a new line.

Sample Input 1:

no one knows what it's like
to be the bad man

Sample Output 1:

No one knows what it's like
To Be The Bad Man
Write a program in Python 3
import string

# put your code here
___

Create a free account to access the full topic