Answers for "lowercasse string in python"

1

lowercase python

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

Code answers related to "lowercasse string in python"

Python Answers by Framework

Browse Popular Code Answers by Language