Python 练习实例32

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 练习实例33 Python 100例 题目:按逗号分隔列表。 程序分析:无。 实例(Python 2.0+) [mycode3 type='python'] #!/usr/bin/python # -*- coding: UTF-8 -*- L = [1,2,3,4,5] s1 = ','.join(str(n) for n in L) print (s1) [/my..