Answers for "how do you change a string to only uppercase in python"

9

how do you change a string to only uppercase in python

original = Hello, World!

#both of these work
upper = original.upper()
upper = upper(original)
Posted by: Guest on March-12-2020

Code answers related to "how do you change a string to only uppercase in python"

Python Answers by Framework

Browse Popular Code Answers by Language