Answers for "python make all characters uppercase"

2

python capitalize the entire string

message="hi"
print(message)
print(message.upper())
Posted by: Guest on January-09-2020
0

uppercase python

# example string
string = "this should be uppercase!"
print(string.upper())

# string with numbers
# all alphabets should be lowercase
string = "Th!s Sh0uLd B3 uPp3rCas3!"
print(string.upper())
Posted by: Guest on October-14-2021

Code answers related to "python make all characters uppercase"

Python Answers by Framework

Browse Popular Code Answers by Language