/ Published in: Python
Expand |
Embed | Plain Text
>>> a ['one', 'two', 'three'] >>> for i in a[::-1]: ... print i ... three two one
You need to login to post a comment.
>>> a ['one', 'two', 'three'] >>> for i in a[::-1]: ... print i ... three two one
You need to login to post a comment.