python function to case of a string code example
Example 1: python3 lowercase
str.lower()
Example 2: python to uppercase
original = Hello, World!
#both of these work
upper = original.upper()
upper = upper(original)
str.lower()
original = Hello, World!
#both of these work
upper = original.upper()
upper = upper(original)