Python - Extending a list directly results in None, why?(Python - 直接扩展列表会导致无,为什么?)
问题描述
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 或 listCcode>,则使用 extend 以多行简单的方式进行.
Or do it in multiple simple lines with extend if you want to actually modify listB or listC.
这篇关于Python - 直接扩展列表会导致无,为什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python - 直接扩展列表会导致无,为什么?
基础教程推荐
- Discord.py 缺少必需的参数 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
