Run
x = "hello world" result = x.capitalize() print(f"Given string : {x}") print(f"Capitalized string : {result}")
Output