Python Titre Case

string = 'this will be title case'
print(string.title())
#output: 'This Will Be Title Case'
Dr. Hippo