how to add value to a tuple?(如何为元组增加价值?)
问题描述
我正在编写一个脚本,其中有一个元组列表,例如 ('1','2','3','4')
.例如:
I'm working on a script where I have a list of tuples like ('1','2','3','4')
. e.g.:
list = [('1','2','3','4'),
('2','3','4','5'),
('3','4','5','6'),
('4','5','6','7')]
现在我需要添加'1234'
、'2345'
、'3456'
和'4567'
分别在每个元组的末尾.例如:
Now I need to add '1234'
, '2345'
,'3456'
and '4567'
respectively at the end of each tuple. e.g:
list = [('1','2','3','4','1234'),
('2','3','4','5','2345'),
('3','4','5','6','3456'),
('4','5','6','7','4567')]
有没有可能?
推荐答案
元组是不可变的,不应该改变——这就是列表类型的用途.
Tuples are immutable and not supposed to be changed - that is what the list type is for.
但是,您可以使用 originalTuple + (newElement,)
替换每个元组,从而创建一个新元组.例如:
However, you can replace each tuple using originalTuple + (newElement,)
, thus creating a new tuple. For example:
t = (1,2,3)
t = t + (1,)
print(t)
(1,2,3,1)
但我宁愿建议从头开始使用列表,因为它们插入项目的速度更快.
But I'd rather suggest to go with lists from the beginning, because they are faster for inserting items.
还有一个提示:不要覆盖程序中的内置名称 list
,而是调用变量 l
或其他名称.如果覆盖内置名称,则不能在当前范围内再使用它.
And another hint: Do not overwrite the built-in name list
in your program, rather call the variable l
or some other name. If you overwrite the built-in name, you can't use it anymore in the current scope.
这篇关于如何为元组增加价值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何为元组增加价值?
基础教程推荐
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 筛选NumPy数组 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01