Return a new string in which all case-based characters are in lower case.
This function does not generate a change.
str.lower()
None
Returns a new string with all characters in lower case.
Example using lower():
'Hello World!!'.lower();
Return value in JSON format
"hello world!!"