1strin = "aBc"
2print string.upper()
3>> "ABC"
4print string.lower()
5>> "abc"
1startString = "TeST StrIng"
2lowerCaseString = startString.lower()
3print(lowerCaseString)
4# Output -> "test string"
1string.lower() -- Finds a uppercase on the string argument then sets it back to lowercase
1# example string
2string = "THIS SHOULD BE LOWERCASE!"
3print(string.lower())
4
5# string with numbers
6# all alphabets whould be lowercase
7string = "Th!s Sh0uLd B3 L0w3rCas3!"
8print(string.lower())