.lower on numbers python code example
Example 1: python lower
string.lower()
Example 2: python string to lower
str = 'heLLo WorLD'
print(str.lower())
# hello world
string.lower()
str = 'heLLo WorLD'
print(str.lower())
# hello world