将列表操作的结果赋给 var
在Python中,
我怎样才能做类似的事情
a = ["pera", "uva", "maca", "saladamista"]
b = a.reverse()
,但不将反向列表分配给a
?
In python,
how can i do something like that
a = ["pera", "uva", "maca", "saladamista"]
b = a.reverse()
but without assign the reverse list to a
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先复制列表,然后反向复制:
或使用“火星笑脸”:
编辑:如果有人对时间感兴趣,这里是:
First copy the list, then reverse the copy:
or use the "Martian smiley":
Edit: In case someone is interested in timings, here they are:
试试这个:
Try this instead: