Answers for "capitalise the start of sentences in a string python"

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 "capitalise the start of sentences in a string python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language