当需要将元组列表展平为字符串格式时,可以使用'str'方法和'strip'方法。
列表可用于存储异构值(即,任何数据类型的数据,例如整数,浮点数,字符串等)。
元组列表基本上包含包含在列表中的元组。“ strip”方法将删除特定的字符/值。'str'方法会将给定的数据类型转换为字符串数据类型。
以下是相同的演示-
my_list = [(11, 14), (54, 56), (98, 0), (13, 76)] print("The list is : ") print(my_list) my_result = str(my_list).strip('[]') print("The list of tuple flattened to string is: ") print(my_result)输出结果
The list is : [(11, 14), (54, 56), (98, 0), (13, 76)] The list of tuple flattened to string is: (11, 14), (54, 56), (98, 0), (13, 76)
元组列表已定义,并显示在控制台上。
strip方法用于删除'['和']'括号。
在将给定的元组列表转换为字符串后,可以使用上述方法,这是使用'str'方法完成的。
这已分配给一个值。
它显示在控制台上。