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