### Proposal Details ```python txt = "hello, and welcome to my world." x = txt.capitalize() print (x) ``` Output: ``` Hello, and welcome to my world. ```