Run
str = 'Welome to python examples' str1 = str.capitalize() print('Original String :',str) print('Capitalized String :',str1)
Output