- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我注意到,对列表进行的许多修改列表内容的操作都会返回 None
,而不是返回列表本身。示例:
>>> mylist = ['a', 'b', 'c']
>>> empty = mylist.clear()
>>> restored = mylist.extend(range(3))
>>> backwards = mylist.reverse()
>>> with_four = mylist.append(4)
>>> in_order = mylist.sort()
>>> without_one = mylist.remove(1)
>>> mylist
[0, 2, 4]
>>> [empty, restored, backwards, with_four, in_order, without_one]
[None, None, None, None, None, None]
这个决定背后的思考过程是什么?
对我来说,这似乎是一种阻碍,因为它阻止了列表处理的“链接”(例如 mylist.reverse().append('a string')[:someLimit]
)。我想“The Powers That Be”可能认为列表理解是一个更好的范例(一个有效的意见),因此不想鼓励其他方法 - 但阻止直觉方法似乎是有悖常理的,即使更好存在替代方案。
这个问题具体是关于 Python 的设计决策返回 None
来自改变列表方法,如 .append
。然而,新手经常会编写错误的代码,期望 .append
(特别是)返回刚刚修改的相同列表。但是,请将此类问题作为与此问题重复的问题来关闭。 “代码做了错误的事情,因为结果是 None
而不是列表”是这些情况下的 OP 应该通过调试独立发现的;创建正确的 MRE 会留下这样的问题 - 因此,它可以被认为是重复的。
参见How can I collect the results of a repeated calculation in a list, dictionary etc. (make a copy of a list with each element modified)?对于“如何重复附加到列表?”这样的简单问题(或调试归结为该问题的问题)。这是一个新的规范,专门以初学者缺乏的视角来解决该主题。
要获取列表的修改版本,请参阅:
<子>.extend
).remove
)同样的问题也适用于其他内置数据类型的某些方法,例如set.discard
(参见How to remove specific element from sets inside a list using list comprehension)和dict.update
(参见Why doesn't a python dict.update() return the object?)。
同样的推理也适用于设计您自己的 API。请参阅Is making in-place operations return the object a bad idea? .
最佳答案
Python 中的一般设计原则是就地改变对象以返回None
的函数。我不确定这是否是我选择的设计选择,但它基本上是为了强调不会返回新对象。
Guido van Rossum(我们的 Python BDFL)说明了设计选择 on the Python-Dev mailing list :
I'd like to explain once more why I'm so adamant that sort() shouldn'treturn 'self'.
This comes from a coding style (popular in various other languages, Ibelieve especially Lisp revels in it) where a series of side effectson a single object can be chained like this:
x.compress().chop(y).sort(z)
which would be the same as
x.compress()
x.chop(y)
x.sort(z)I find the chaining form a threat to readability; it requires that thereader must be intimately familiar with each of the methods. Thesecond form makes it clear that each of these calls acts on the sameobject, and so even if you don't know the class and its methods verywell, you can understand that the second and third call are applied tox (and that all calls are made for their side-effects), and not tosomething else.
I'd like to reserve chaining for operations that return new values,like string processing operations:
y = x.rstrip("\n").split(":").lower()
There are a few standard library modules that encourage chaining ofside-effect calls (pstat comes to mind). There shouldn't be any newones; pstat slipped through my filter when it was weak.
关于python - 为什么这些列表方法(追加、排序、扩展、删除、清除、反转)返回 None 而不是结果列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54848884/
我正在尝试将我在本文档中阅读的内容付诸实践: https://sar.informatik.hu-berlin.de/research/publications/SAR-PR-2006-05/SAR-
我一直在尝试编写一个可以改变这个的 terraform 表达式: subnets = { my_subnet_1 = { nsg = "my_nsg_1", ad
我有一个HashMap,它将两个字符串转换为单词,然后将单词添加到 map 中。我拥有它,以便一个键可以指向多个值。现在我想创建一个循环来反转表,以便所有值都指向键。不要为一个指向多个逆值的键而烦恼。
我对 ~ 运算符有点困惑。代码如下: a = 1 ~a #-2 b = 15 ~b #-16 ~ 是如何工作的? 我想,~a 会是这样的: 0001 = a 1110 = ~a 为什么不呢? 最佳
如果执行 ResourceManager.GetString(Key),您可以获取资源中某个项目的值。有没有一种方法可以进行反向查找以从给定值的资源中获取 key (本质上是反翻译)? 最佳答案 您应
我在 R 中编写了一个代码来反转一个数字。但是我得到了 inf作为输出。 digit0){ rev_num=rev_num*10 + digit %% 10 digit=digit / 10 }
这个问题已经有答案了: Invert keys and values of the original dictionary (3 个回答) 已关闭 9 年前。 我正在寻找在 python 上转置一本字
所以我试图反转我当前制作的形状的输出。我想知道我应该扭转这种情况吗?我尝试更改变量“a”和“c”的值,最终陷入无限循环。 class IRT { public static void main
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: PHP mysql_real_escape_string() -> stripslashes() leavi
从 Wordpress 模板中提取一些预先存在的代码来绘制椭圆阴影。阴影呈椭圆形向下辐射。只有椭圆的下半部分可见,从而形成底部阴影效果。 我只是想“反转”椭圆的“阴影效果”,以便只有阴影的顶部 一半可
我有一个函数应该找到两个弧度的中间 function mrad(rb,ra){return (rb+ra)/2;} 但有时,当我用 Math.sin 和 Math.cos 绘制 x 和 y 时,这两个
给定此代码(http://jsfiddle.net/bzf1mkx5/) .intern { -webkit-animation: in 1s 1 reverse forwards; } .i
我对 ~ 运算符有点困惑。代码如下: a = 1 ~a #-2 b = 15 ~b #-16 ~ 是如何工作的? 我想,~a 会是这样的: 0001 = a 1110 = ~a 为什么不呢? 最佳
我需要以相反的顺序从列表中提取项目(从最后一个条目到第一个)。我设法得到了所有元素,但是,从第一个到最后一个。这是我正在使用的部分代码: 该列表位于不同的网站集上。 using (SPSit
由于一些证书问题,我不得不写 ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chai
是否有一个函数接受一个函数列表和一个输入,并输出一个对输入进行操作的函数列表? 所以像 map,但倒退: >>>map(lambda x: 2*x,[1,2,3,4,5,6,7,8,9]) [2, 4
考虑下表团队消息: 15:10 | Peter | I'm off to the store, call my mobile phone if you need me. 15:11 | Susy |
算法如下: int encryption(int a, int b) { short int c, c2; uint8_t d; c = a ^ b; c2 = c;
我正在寻找一种方法来逆转 a CRC32 checksum .周围有解决方案,但它们要么是 badly written , extremely technical和/或 in Assembly .汇编
使用批处理文件,处理所有在文件名或扩展名中共享字符串的文件就足够简单了,例如: FOR /R %F IN (*.EXE) DO @ECHO %F 但是,如果我想反转文件集的含义怎么办?比如,处理所有不
我是一名优秀的程序员,十分优秀!