Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There is no built in reverse function in Python's str object. What is the best way of implementing this?

If supplying a very concise answer, please elaborate on it's efficiency. Is the str converted to a different object, etc.

share|improve this question
Not the best way by far, but one of the many ways to do it if you weren't allowed to use slicing or reversed(), is ''.join((s[i] for i in xrange(len(s)-1, -1, -1))). – Dennis Mar 6 at 6:49

2 Answers

up vote 351 down vote accepted

How about:

>>> 'hello world'[::-1]
'dlrow olleh'

This is extended slice syntax. It works by doing [begin:end:step] - by leaving begin and end off and specifying a step of -1, it reverses a string.

share|improve this answer
5  
That's very pythonic. Good job! – dionyziz Feb 22 '12 at 19:23
6  
@grass: 'hello'[:4][::-1] would do it – Paolo Bergantino Apr 28 '12 at 16:46
14  
@PaoloBergantino You, sir, are a gentleman and a scholar. – TigOldBitties May 19 '12 at 15:43
4  
@odigity: Perhaps until you understand Python you should reserve your judgment. – Paolo Bergantino Feb 4 at 20:37
2  
And you can't hide by string encoding voodoo. Python right now supports character indexing via my_string[x]. That sets the standard for what is a character, at which point is a trivial matter to ask to reverse those atomic units. – odigity Mar 4 at 14:45
show 8 more comments

@Paolo's s[::-1] is fastest; a slower approach (maybe more readable, but that's debatable) approach is ''.join(reversed(s)).

share|improve this answer
37  
A lot faster: $ python -m timeit s='s = "abcdef"' 'mystr = mystr[::-1]' 1000000 loops, best of 3: 0.263 usec per loop $ python -m timeit s='s = "abcdef"' 'mystr = "".join(reversed(mystr))' 100000 loops, best of 3: 2.29 usec per loop – telliott99 Jan 23 '10 at 17:55

protected by Jon Clements Apr 11 at 8:29

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.