Answers for "how to change letter in string to capital puython"

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 to change letter in string to capital puython"

Python Answers by Framework

Browse Popular Code Answers by Language