Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

change case python

_str = "Hello World!"

print(_str.upper()) 	# HELLO, WORLD!

print(_str.lower()) 	# hello, world!

print(_str.swapcase()) 	# hELLO wORLD!
 
PREVIOUS NEXT
Tagged: #change #case #python
ADD COMMENT
Topic
Name
9+9 =