vote up 7 vote down star

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.

flag

2 Answers

vote up 30 vote down check

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.

link|flag
vote up 8 vote down

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

link|flag

Your Answer

Get an OpenID
or

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