Python 练习实例322025-07-14 17:09•Python2.x•阅读 Python 100例题目:按相反的顺序输出列表的值。程序分析:无。程序源代码:实例#!/usr/bin/python# -*- coding: UTF-8 -*-a = ['one', 'two', 'three']foriina[::-1]: print(i)以上实例输出结果为: three two one Python 100例