Answers for "how to return upper and lower string python"

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 "how to return upper and lower string python"

Python Answers by Framework

Browse Popular Code Answers by Language