how to make all letter capital python code example
Example: how do you change a string to only uppercase in python
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)