I would like how to convert the first letter of each word in this column:
JavaScript
x
4
1
Test
2
There is a cat UNDER the table
3
The pen is working WELL.
4
Into lower case, in order to have
JavaScript
1
4
1
Test
2
there is a cat uNDER the table
3
the pen is working wELL.
4
I know there is capitalize() but I would need a function which does the opposite.
Many thanks
Please note that the strings are within a column.
Advertisement
Answer
I don’t believe there is a builtin for this, but I could be mistaken. This is however quite easy to do with string comprehension!.
JavaScript
1
2
1
" ".join(i[0].lower()+i[1:] for i in line.split(" "))
2
Where line
is each individual line.