Posts by Mr Douglas Morais • 1 point
1 post
-
-5
votes4
answers7094
viewsA: Swap the first character of a string with the last python character
A more simplified solution: Function namePropriation(name){ Return name.substring(0, 1). toUpperCase() + name.substring(1). toLowerCase() }