Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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())
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #uppercase #python
ADD COMMENT
Topic
Name
6+6 =