I have a list in python, which I'd like to iterate and capitalize every letter that isn't 'A', so turn this list:
['albert', 'angela', 'leo', 'bridget']
Into:
['aLBERT', 'aNGELa', 'LEO', 'BRIDGET']
|
|
All of the existing answers seem to want to operate on the characters individually. It is simpler and easier just to handle the words as a whole:
|
|||||||||
|
|
|||||||||||||||
|
|
This is what
Then just apply the translation table to each name in the list. It will be faster than iterating over each name and calling |
|||||||||||||
|
|
|||||||||||
|
|
The inelegant way is simple
However list complrehensions will be more pythonic
This is essentially nested list comprehensions replacing the nested loops. This is a much neater solution and more understandable A list comprehension is an expression (ltr.upper() if ltr == 'a') followed by "for" and then option if clauses. Here we have two (and I see @JBernardo did the same thing) acting in same way as nested for loops. I hope that helps explain the differences. |
||||
|
|
|
If you want to engage the functional programming paradigm a bit more:
|
|||
|
|