Answers for "how to make python to take letters both uppercase and lowercase"

3

python string to lower

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

Code answers related to "how to make python to take letters both uppercase and lowercase"

Python Answers by Framework

Browse Popular Code Answers by Language