Answers for "int pytohn3convert string uppercase and leave the lowecase"

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

Python Answers by Framework

Browse Popular Code Answers by Language