python逆序
2021-04-08 19:25
阅读:483
标签:splay rev eve isp one python 逆序 切片 pytho lists = [1,3,4,5,6,7,9,2] python逆序 标签:splay rev eve isp one python 逆序 切片 pytho 原文地址:https://www.cnblogs.com/Marigolci/p/13377708.html
# 切片
print lists[::-1]
# 函数reverse 对数组进行操作
lists.reverse()
print lists
# 函数reversed 返回一个迭代对象,需要list化
print list(reversed(lists))
上一篇:Java 继承
评论
亲,登录后才可以留言!