【Python】【demo实验33】【练习实例】【列表的反转】
反转列表
我的源代码:
#!/usr/bin/python # encoding=utf-8 # -*- coding: UTF-8 -*- #按照相反的顺序输出列表的各元素 l = ["test1","test2",3,("test3",2),5,9] m = l[::-1] print("NO.1:",l) print("NO.2:",m) l.reverse() print("NO.3:",l)
结果:
————————(我是分割线)————————
参考:
1. RUNOOB.COM:https://www.runoob.com/python/python-exercise-example32.html
备注:
初次编辑时间:2019年10月5日16:08:39
环境:Windows 7 / Python 3.7.2
————————
欢迎访问我的博客;
如果您觉得有用,请点赞!
说明:
标题带有*表示重要或待重新查看确认
标题带有#表示未编辑完成;待补充
标题带有######表示为概要目录