I want to swap each pair of characters in a string. '2143' becomes '1234', 'badcfe' becomes 'abcdef'.
How can I do this in Python?
|
|
The usual way to swap to items in Python is:
So it would seem to me that you just do the same with an extended slice. It is slightly complicated because strings aren't mutable so you have to convert to a list and then back to a string, but what I'd do is:
|
|||||||||||||||
|
|
oneliner:
|
|||||
|
|
|
There is no need to make a list. The following works for even-length strings:
|
|||
|
|
|
Here's one way...
|
|||||||||||||
|
|
Loop over length of string by twos and swap:
giving:
and fails on odd-length strings with an IndexError exception. |
|||
|
|
or
or if the string can have an odd length:
Note that this won't work with old versions of Python (if I'm not mistaking older than 2.5). The benchmark was run on python-2.7-8.fc14.1.x86_64 and a Core 2 Duo 6400 CPU with |
|||||||||||||||||
|
|
If performance or elegance is not an issue, and you just want clarity and have the job done then simply use this:
This allows you to swap or simply replace chars or substring. For example, to swap 'ab' <-> 'de' in a text:
|
|||||
|
|
Do you want the digits sorted? Or are you swapping odd/even indexed digits? Your example is totally unclear. Sort:
s is now '1234'. The trick is here that list(string) breaks it into characters. |
|||||||||
|
|
Like so:
|
|||
|
|
However re is a bit slow.
|
||||
|
|
|
One more way:
|
|||
|
|