Capitalize a string March 27, 2023 by Tarik >>> b = "my name" >>> b.capitalize() 'My name' >>> b.title() 'My Name'