"hello world".title()
'Hello World'
>>> u"hello world".title()
u'Hello World'
>>> "hello world".title()
'Hello World'
>>> u"hello world".title()
u'Hello World'
my_string = "programiz is Lit"
cap_string = my_string.capitalize()
print(cap_string)
# Use title() to capitalize the first letter of each word in a string.
name = "elon musk"
print(name.title())
# Elon Musk
my_string = "programiz is Lit"
print(my_string[0].upper() + my_string[1:])
text = "this is an example text"
print(text.title())