本文介绍了什么是“更好"反向方法还是反向内置函数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

通常认为什么是Pythonic/更好/更快使用,反向方法或反向内置函数?

What is typically regarded as more Pythonic/better/faster to use, the reverse method or the reversed built-in function?

两者都在起作用:

_list = list(xrange(4))

print _list

rlist = list(reversed(_list))

print rlist

_list.reverse()

print _list

推荐答案

取决于您是否要就地反转列表(即更改列表).没有其他真正的区别.

Depends on whether you want to reverse the list in-place (i.e. change the list) or not. No other real difference.

这篇关于什么是“更好"反向方法还是反向内置函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 04:04