Answers for "python make a string uppercase and lowercase"

9

python to uppercase

original = Hello, World!

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

Code answers related to "python make a string uppercase and lowercase"

Python Answers by Framework

Browse Popular Code Answers by Language