change a lower case ward to upper case in python file handling 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)