SyntaxFix
Write A Post
Hire A Developer
Questions
If only you want the first letter:
>>> 'hello world'.capitalize() 'Hello world'
But to capitalize each word:
>>> 'hello world'.title() 'Hello World'