how to use lower() function in python code example
Example 1: convert string to lowercase in python
str = 'HELLO'
print(str.lower())
#prints "hello"
Example 2: python lower
string.lower()
str = 'HELLO'
print(str.lower())
#prints "hello"
string.lower()