Python – 将元组列表中后部元素连接起来
当需要连接元组列表的后部元素时,可以使用列表解析和“join”方法。
示例
以下是对此进行演示 −
my_tuple = [(13, 42, "Will"), (48, "is a"), ("good boy", )] print("The tuple is : " ) print(my_tuple) my_result = " ".join([sub[-1] for sub in my_tuple]) print("The result is : " ) print(my_result)
输出
The list is : [(13, 42, 'Will'), (48, 'is a'), ('good boy',)] The concatenated list is : Will is a good boy
说明
定义了一个元组列表,并在控制台上显示。
使用列表解析和“join”方法来获取元组列表中的最后一个元素。
此结果被分配给一个变量。
这是在控制台上显示的输出。
广告