/ Published in: Python
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
>>> a ['one', 'two', 'three'] >>> for i in a[::-1]: ... print i ... three two one