python change all into lower case and print it out code example
Example 1: python3 lowercase
str.lower()
Example 2: python string to lower
str = 'heLLo WorLD'
print(str.lower())
# hello world
str.lower()
str = 'heLLo WorLD'
print(str.lower())
# hello world