HOME/Articles/

simple python-example-32 (snippet)

Article Outline

Python example 'python-example-32'

python-example-32

Python example: python-example-32

#!/usr/bin/python
# -*- coding: UTF-8 -*-

a = ['one', 'two', 'three']
for i in a[::-1]:
    print(i)