📝 Edit page
➕ Add page
Case
Title case
>>> 'abc d'.title()
'Abc D'
Capitalize
>>> 'abc d'.capitalize()
'Abc d'
Uppercase
>>> 'abc d'.upper()
'ABC D'