s = \'the brown fox\'
...do something here...
s should be:
s
\'The Brown Fox\'
What\'s the easiest
If only you want the first letter:
>>> 'hello world'.capitalize() 'Hello world'
But to capitalize each word:
>>> 'hello world'.title() 'Hello World'