Answers for "lower method python"

3

python string to lower

str = 'heLLo WorLD'
print(str.lower())
# hello world
Posted by: Guest on October-26-2020
1

lowercase python

strin = "aBc"
print string.upper()
>> "ABC"
print string.lower()
>> "abc"
Posted by: Guest on October-07-2021
1

python string lowercase

startString = "TeST StrIng"
lowerCaseString = startString.lower()
print(lowerCaseString)
# Output -> "test string"
Posted by: Guest on March-20-2020

Python Answers by Framework

Browse Popular Code Answers by Language