xxxxxxxxxx
cap = "hello world".title()
print(cap)
'Hello World'
xxxxxxxxxx
# plz suscribe to my youtube channel -->
# https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A
Text = "python is easy"
print(Text.capitalize())
####output####
Python is easy
xxxxxxxxxx
import string
S = "All animals are equal but some animals are more equal than others."
#capitalize all words in string S
print(string.capwords(S))