954,525 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Python string reversed explanation

I was googling for a way to reverse a string and I found this.

>>> 'asd'[::-1]
>>> 'dsa'


It works, but there was no explanation where I got if from. Can someone please be kind enough to explain it. Thanks.

nunos
Light Poster
47 posts since Aug 2009
Reputation Points: 10
Solved Threads: 0
 

You have to read up on the slicing operator in the Python Manual.

Generally you can slice a sequence with [start: end: step]
By default start=0, end=len(seq), step=1
step=-1 goes from the end to the beginning of the sequence, hence your reverse.

For some nice slicing examples see post #4 at;
http://www.daniweb.com/forums/post104865.html#post104865

sneekula
Nearly a Posting Maven
2,427 posts since Oct 2006
Reputation Points: 961
Solved Threads: 212
 

wow ^^ even i didn't know that

Friktion
Newbie Poster
15 posts since Jun 2009
Reputation Points: 10
Solved Threads: 4
 

You have to read up on the slicing operator in the Python Manual.

Generally you can slice a sequence with [start: end: step] By default start=0, end=len(seq), step=1 step=-1 goes from the end to the beginning of the sequence, hence your reverse.

For some nice slicing examples see post #4 at; http://www.daniweb.com/forums/post104865.html#post104865

I have used slice notation in the past. I wasn't aware that there was the 'step'. Thanks for your reply and link to the post.

nunos
Light Poster
47 posts since Aug 2009
Reputation Points: 10
Solved Threads: 0
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: