Answers for "capitalise each word python"

3

python capitalize all words

sample_text = "this is a sample string"
result = sample_text.title() # "This Is A Sample String"
Posted by: Guest on September-26-2021
4

capitalize first letter of each word python

"hello world".title()
'Hello World'
>>> u"hello world".title()
u'Hello World'
Posted by: Guest on May-27-2020

Code answers related to "capitalise each word python"

Python Answers by Framework

Browse Popular Code Answers by Language