Python 练习实例40
题目:将一个数组逆序输出。
程序分析:用第一个与最后一个交换。
程序源代码:
实例
#!/usr/bin/python
# -*- coding: UTF-8 -*-
if __name__ == '__main__':
a = [9,6,5,4,1]
N = len(a)
print (a)
for i in range(len(a) // 2):
a[i],a[N - i - 1] = a[N - i - 1],a[i]
print (a)
以上实例输出结果为:
[9, 6, 5, 4, 1] [1, 4, 5, 6, 9]
nathan
bin***[email protected]
以下方式也可以将一个数组逆序输出:
nathan
bin***[email protected]
叮咚
126***[email protected]
使用 reverse() 函数:
叮咚
126***[email protected]
朦胧
253***[email protected]
参考方法:
朦胧
253***[email protected]
陆小斯
iml***[email protected]
这样也是可以的,通过列表位置倒序打印。
陆小斯
iml***[email protected]
Webben
wei***[email protected]
参考实例:
Webben
wei***[email protected]
Tongfei
315***[email protected]
参考:
Tongfei
315***[email protected]
滑稽树上滑稽果
374***[email protected]
Python3 测试:
滑稽树上滑稽果
374***[email protected]