Python 中连接元组的方法
当需要连接多个元组时,可以使用 '+' 运算符。元组是一种不可变数据类型。这就意味着,一旦定义了值,就不能通过访问其索引元素来更改这些值。如果我们尝试更改这些元素,就会导致错误。这些重要的包含是非常重要的,因为它们确保了只读访问。
可以用来添加数值或连接字符串。'+' 运算符
以下是演示 −
示例
my_tuple_1 = (11, 14, 0, 78, 33, 11) my_tuple_2 = (10, 78, 0, 56, 8, 34) print("The first tuple is : ") print(my_tuple_1) print("The second tuple is : ") print(my_tuple_2) my_result = my_tuple_1 + my_tuple_2 print("The tuple after concatenation is : " ) print(my_result)
输出
The first tuple is : (11, 14, 0, 78, 33, 11) The second tuple is : (10, 78, 0, 56, 8, 34) The tuple after concatenation is : (11, 14, 0, 78, 33, 11, 10, 78, 0, 56, 8, 34)
说明
- 定义了两个元组并将其显示在控制台上。
- 使用 '+' 运算符将它们连接起来。
- 这将分配给一个值。
- 它显示在控制台上。
广告