Answers for "how to convert a string to all lowercase in python"

3

python string to lower

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

python capitalize the entire string

message="hi"
print(message)
print(message.upper())
Posted by: Guest on January-09-2020

Code answers related to "how to convert a string to all lowercase in python"

Python Answers by Framework

Browse Popular Code Answers by Language