pyhton make sting lowercase code example
Example 1: convert string to lowercase in python
str = 'HELLO'
print(str.lower())
#prints "hello"
Example 2: string.lower
string.lower() -- Finds a uppercase on the string argument then sets it back to lowercase