Python 32

Python 100 [Python 100] Python 100

#!/usr/bin/python # -*- coding: UTF-8 -*- a = ['one', 'two', 'three'] for i in a[::-1]: print (i)

three
two
one

Python 100 [Python 100] Python 100