Answers for "from a string take make one word to uppercase using 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 "from a string take make one word to uppercase using python"

Python Answers by Framework

Browse Popular Code Answers by Language