Answers for "how to make capital letter in python"

19

capitalize string python

# Python string capitalization
string = "this isn't a #Standard Sntence."
string.capitalize() # "This isn't a #standard sentence."
string.upper() # "THIS ISN'T A #STANDARD SENTENCE."
string.lower() # "this isn't a #standard sentence."
string.title() # "This Isn'T A #Standard Sentence."

# ---------- Alternate Title Case ----------
# "This Isn't A #standard Sentence."

from string import capwords
string = capwords(string) # capitalize characters after each separator.
# see the doc: string.capwords(s, sep=None), separator defaults to space

# or implement it directly:
string = " ".join(s.capitalize() for s in string.split())
#
Posted by: Guest on December-01-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 "how to make capital letter in python"

Python Answers by Framework

Browse Popular Code Answers by Language