Answers for "how to check all letters of string and convert to lowercase in python"

5

convert string to lowercase in python

str = 'HELLO'
print(str.lower())

#prints "hello"
Posted by: Guest on February-01-2021
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 check all letters of string and convert to lowercase in python"

Python Answers by Framework

Browse Popular Code Answers by Language