demo_ref_string_title.py:
txt = "Welcome to my world" x = txt.title() print(x)
➜ begtut>python demo_string_title.py
Welcome To My World