Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python string first letter uppercase and second letter in lowercase

x = "string"
y = x[:3] + x[3].swapcase() + x[4:]
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #string #letter #uppercase #letter #lowercase
ADD COMMENT
Topic
Name
7+9 =