# title() title function capitalises the first letter of string and make other
# letter lower case.
a=input('Enter a string :')
b=a.title()
print(b,': is the modified string')
# output:
'''
Enter a string :hII hOW aRE yOU
Hii How Are You : is the modified string
'''
>>> import re
>>> def titlecase(s):
... return re.sub(rb"[A-Za-z]+('[A-Za-z]+)?",
... lambda mo: mo.group(0)[0:1].upper() +
... mo.group(0)[1:].lower(),
... s)
...
>>> titlecase(b"they're bill's friends.")
b"They're Bill's Friends."
# .title() мөрийн арга нь гарчгийн том үсгийн мөрийг буцаана.
# Гарчгийн том үсгээр үг бүрийн эхний тэмдэгтийг том үсгээр бичсэн бол бусад тэмдэгтүүдийг жижиг үсгээр бичнэ.
my_var = "dark knight"
print(my_var.title())
# Prints: Dark Knight