code to convert capital letters into small in python code example
Example 1: python string to lower
str = 'heLLo WorLD'
print(str.lower())
# hello world
Example 2: python to uppercase
original = Hello, World!
#both of these work
upper = original.upper()
upper = upper(original)