check if there is an uppercase in a string python 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)