I have a python list variable that contains strings. Is there a python function that can convert all the strings in one pass to lowercase and vice versa, uppercase?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
It can be done with list comprehensions
or with map function
|
|||
|
|
|
Besides being easier to read (for many people), list comprehensions win the speed race, too:
|
|||||||
|
|
|||
|
List comprehensions is how I'd do it. This snippet below shows how to convert a list to all upper case then back to lower:
|
|||
|
|
|
|||
|
|
|
For this sample the comprehension is fastest $ python -m timeit -s 's=["one","two","three"]*1000' '[x.upper for x in s]' 1000 loops, best of 3: 809 usec per loop $ python -m timeit -s 's=["one","two","three"]*1000' 'map(str.upper,s)' 1000 loops, best of 3: 1.12 msec per loop $ python -m timeit -s 's=["one","two","three"]*1000' 'map(lambda x:x.upper(),s)' 1000 loops, best of 3: 1.77 msec per loop |
|||
|
|
|
Depending on your inputstream there might be special cases to look for. One that I know of is German "ß" for which there is no uppercase letter. Its rendered to an "SS" in uppercase. |
|||
|
|