how to change all string in python to upper code example
Example: python to uppercase
original = Hello, World!
#both of these work
upper = original.upper()
upper = upper(original)
original = Hello, World!
#both of these work
upper = original.upper()
upper = upper(original)