Answers for "what python for capitalize the 1st letter of a word"

5

how to capitalize first letter in python

# To capitalize the first letter in a word or each word in a sentence use .title()
name = tejas naik
print(name.title())    # output = Tejas Naik
Posted by: Guest on November-22-2020
0

python starts with capital letter

In [48]: x = 'Linux'
In [49]: x[0].isupper()
Out[49]: True
In [51]: x = 'lINUX'
In [53]: x[0].isupper()
Out[53]: False
Posted by: Guest on September-23-2021

Code answers related to "what python for capitalize the 1st letter of a word"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language