Python——在列表中合并元组元素
在本文中,我们将学习如何合并列表中的元组元素。使用 join 和 map 方法是一件非常直接的事情。按照以下步骤完成任务。
- 用包含字符串的元组初始化列表。
- 编写一个名为 join_tuple_string 的函数,它将元组作为参数并返回一个字符串。
- 使用 map(join_tuple_string, list) 方法合并列表中的元组。
- 将结果转换为列表。
- 打印结果。
示例
# initializing the list with tuples string_tuples = [('A', 'B', 'C'), ('Tutorialspoint', 'is a', 'popular', 'site', 'for tech learnings')] # function that converts tuple to string def join_tuple_string(strings_tuple) -> str: return ' '.join(strings_tuple) # joining all the tuples result = map(join_tuple_string, string_tuples) # converting and printing the result print(list(result))
如果你运行以上代码,你将获得以下结果。
输出
['A B C', 'Tutorialspoint is a popular site for tech learnings']
结论
如果你对本文有任何疑问,请在评论区提问。
广告