how to capitalize all letters in python code example
Example 1: capitalize string python
string = "this isn't a #Standard Sntence."
string.capitalize()
string.upper()
string.lower()
string.title()
from string import capwords
string = capwords(string)
string = " ".join(s.capitalize() for s in string.split())
Example 2: uppercase string python
string.lower()
string.upper()
Example 3: python capitalize the entire string
message="hi"
print(message)
print(message.upper())
Example 4: capitalize python
string=str("caPiTalIZE")
print(string.capitalize())