Result Size:
625 x 571
demo_ref_string_title2.py:
txt = "Welcome to my 2nd world" x = txt.title() print(x)
x
txt
=
"Welcome to my 2nd world"
x
=
txt
.
title
()
print
(
x
)
C:\Users\My Name>python demo_string_title2.py
Welcome To My 2Nd World