Answers for "Command to Check the is String uppercase"

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 "Command to Check the is String uppercase"

Python Answers by Framework

Browse Popular Code Answers by Language