Python 練習(xí)實例32
python 練習(xí)實例32
題目:按相反的順序輸出列表的值。
程序分析:無。
程序源代碼:
實例:
#!/usr/bin/python # -*- coding: utf-8 -*- a = ['one', 'two', 'three'] for i in a[::-1]: print (i)
以上實例輸出結(jié)果為:
three two one
題目:按相反的順序輸出列表的值。
程序分析:無。
程序源代碼:
實例:
#!/usr/bin/python # -*- coding: utf-8 -*- a = ['one', 'two', 'three'] for i in a[::-1]: print (i)
以上實例輸出結(jié)果為:
three two one