问题描述
x=[1,2,3]
x.extend('a')
输出:
x is [1,2,3,'a']
但是当我执行以下操作时:
But when I do the following:
[1,2,3].extend('a')
输出:
None
为什么 extend 对列表引用起作用,但对列表不起作用?
Why does extend work on a list reference, but not on a list?
我发现这个是因为我试图将 listB 附加到 listA,同时尝试将 listC 扩展到 listB.
I found this because I was trying to append a listB to a listA while trying to extend listC to listB.
listA.append([listB[15:18].extend(listC[3:12])])
假设列表不能直接附加/扩展.解决此问题的最流行的表单解决方法是什么?
Supposing lists cannot be directly appended / extending. What is the most popular work around form for resolving this issue?
推荐答案
list.extend 就地修改列表并且不返回任何内容,从而导致None.在第二种情况下,它是一个正在扩展的临时列表,在该行之后立即消失,而在第一种情况下,它可以通过 x 引用.
list.extend modifies the list in place and returns nothing, thus resulting in None. In the second case, it's a temporary list that is being extended which disappears immediately after that line, while in the first case it can be referenced via x.
在尝试将 listC 扩展到 listB 时将 listB 附加到 listA.
to append a listB to a listA while trying to extend listC to listB.
您可能想试试这个,而不是使用 extend:
Instead of using extend, you might want to try this:
listA.append(listB[15:18] + listC[3:12])
如果您想实际修改 listB 或 listC,则使用 extend 以多行简单的方式进行.
Or do it in multiple simple lines with extend if you want to actually modify listB or listC.
这篇关于Python - 直接扩展列表会导致无,为什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)