Open In App

Python | Concatenate All Records

Last Updated : 16 May, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Sometimes, while working with data in form of records, we can have a problem in which we need to concatenate elements of all the records received. This is a very common application that can occur in Data Science domain. Let’s discuss certain ways in which this task can be performed. 

Method #1: Using generator expression + join() This is the most basic method to achieve solution to this task. In this, we iterate over whole nested lists using generator expression and get the concatenated elements using join(). 

Python3




# Python3 code to demonstrate working of
# Concatenate All Records
# using join() + generator expression
 
# initialize list
test_list = [('geeksforgeeks ', 'is'), (' best', ' for'), (' all', ' geeks')]
 
# printing original list
print("The original list : " + str(test_list))
 
# Concatenate All Records
# using join() + generator expression
res = "".join(j for i in test_list for j in i)
 
# printing result
print("The Concatenated elements of list is : " + res)


Output

The original list : [('geeksforgeeks ', 'is'), (' best', ' for'), (' all', ' geeks')]
The Concatenated elements of list is : geeksforgeeks is best for all geeks

Time Complexity: O(n) where n is the number of tuples in the list.
Auxiliary Space: O(1) as only a few variables are used.

Method #2 : Using join() + map() + chain.from_iterable() The combination of above methods can also be used to perform this task. In this, the extension of concatenation is done by combination of map() and from_iterable(). 

Python3




# Python3 code to demonstrate working of
# Concatenate All Records
# using join() + map() + chain.from_iterable()
from itertools import chain
 
# initialize list
test_list = [('geeksforgeeks ', 'is'), (' best', ' for'), (' all', ' geeks')]
 
# printing original list
print("The original list : " + str(test_list))
 
# Concatenate All Records
# using join() + map() + chain.from_iterable()
res = "".join(map(str, chain.from_iterable(test_list)))
 
# printing result
print("The Concatenated elements of list is : " + str(res))


Output

The original list : [('geeksforgeeks ', 'is'), (' best', ' for'), (' all', ' geeks')]
The Concatenated elements of list is : geeksforgeeks is best for all geeks

Time Complexity: O(n), where n is the total number of characters in all the tuples in the list.
Auxiliary Space: O(n), as we are using an additional string to store the concatenated result.

Method #3 : Using extend() and join() methods

Python3




# Python3 code to demonstrate working of
# Concatenate All Records
 
# initialize list
test_list = [('geeksforgeeks ', 'is'), (' best', ' for'), (' all', ' geeks')]
 
# printing original list
print("The original list : " + str(test_list))
 
# Concatenate All Records
x = []
for i in test_list:
    x.extend(list(i))
res = " ".join(x)
# printing result
print("The Concatenated elements of list is : " + res)


Output

The original list : [('geeksforgeeks ', 'is'), (' best', ' for'), (' all', ' geeks')]
The Concatenated elements of list is : geeksforgeeks  is  best  for  all  geeks

Time complexity: O(n), where n is the total number of elements in the list.
Auxiliary space: O(n), where n is the total number of elements in the list.

Method #4 : Using reduce() + join()

Python3




from functools import reduce
 
# initialize list
test_list = [('geeksforgeeks ', 'is'), (' best', ' for'), (' all', ' geeks')]
 
# printing original list
print("The original list : " + str(test_list))
 
# Concatenate All Records
result = " ".join(reduce(lambda x, y: x+y, test_list))
 
# printing result
print("The Concatenated elements of list is : " , result)
#This code is contributed by Edula Vinay Kumar Reddy


Output

The original list : [('geeksforgeeks ', 'is'), (' best', ' for'), (' all', ' geeks')]
The Concatenated elements of list is :  geeksforgeeks  is  best  for  all  geeks

Time complexity: O(n), where n is the length of the list.
Auxiliary space: O(n)

Method #5: Using a loop to concatenate the elements

The program initializes a list of tuples and prints the original list. Then, it loops through each tuple and concatenates all the elements of each tuple to a single string variable called “res”. Finally, it prints the concatenated result.

Python3




# Python3 code to demonstrate working of
# Concatenate All Records
# using a loop
 
# initialize list
test_list = [('geeksforgeeks ', 'is'), (' best', ' for'), (' all', ' geeks')]
 
# printing original list
print("The original list : " + str(test_list))
 
# Concatenate All Records
# using a loop
res = ''
for i in test_list:
    for j in i:
        res += j
 
# printing result
print("The Concatenated elements of list is : " + res)


Output

The original list : [('geeksforgeeks ', 'is'), (' best', ' for'), (' all', ' geeks')]
The Concatenated elements of list is : geeksforgeeks is best for all geeks

Time complexity: O(n^2), where n is the number of tuples in the list.
Auxiliary space: O(n^2), since the concatenated string ‘res’ is built up by appending each element of each tuple, resulting in a string of length proportional to the number of tuples and the length of each tuple.

Method #6: Using list comprehension and join()

Step-by-step approach:

  • Initialize the list of tuples.
  • Use a list comprehension to iterate through each tuple in the list and join its elements using the join() method.
  • Join the resulting list of strings using the join() method to obtain the final concatenated string.

Python3




# Python3 code to demonstrate working of
# Concatenate All Records
# using list comprehension and join()
 
# initialize list
test_list = [('geeksforgeeks ', 'is'), (' best', ' for'), (' all', ' geeks')]
 
# printing original list
print("The original list : " + str(test_list))
 
# Concatenate All Records
# using list comprehension and join()
res = ''.join([''.join(t) for t in test_list])
 
# printing result
print("The Concatenated elements of list is : " + res)


Output

The original list : [('geeksforgeeks ', 'is'), (' best', ' for'), (' all', ' geeks')]
The Concatenated elements of list is : geeksforgeeks is best for all geeks

Time complexity: O(n), where n is the total number of characters in all the tuples.
Auxiliary space: O(n), where n is the total number of characters in all the tuples, because we are creating a new list of concatenated strings.



Previous Article
Next Article

Similar Reads

Python program to Concatenate all Elements of a List into a String
Given a list, the task is to write a Python program to concatenate all elements in a list into a string i.e. we are given a list of strings and we expect a result as the entire list is concatenated into a single sentence and printed as the output. Examples: Input: ['hello', 'geek', 'have', 'a', 'geeky', 'day'] Output: hello geek have a geeky dayUsi
3 min read
Python - Concatenate all keys which have similar values
Given a dictionary with string keys and sets as values the task is to write a python program to concatenate keys all of which have similar values order irrespective. Input : test_dict = {'gfg' : {5, 4, 3}, 'is' : {4, 3, 5}, 'best' : {1, 4, 3}, 'for' : {1, 3, 4}, 'geeks' : {1, 2, 3}} Output : {'gfg-is': frozenset({3, 4, 5}), 'best-for': frozenset({1
8 min read
Python - Remove all duplicate occurring tuple records
Sometimes, while working with records, we can have a problem of removing those records which occur more than once. This kind of application can occur in web development domain. Let’s discuss certain ways in which this task can be performed. Method #1 : Using list comprehension + set() + count() Initial approach that can be applied is that we can it
6 min read
Python | Pandas Series.str.cat() to concatenate string
Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier.Pandas str.cat() is used to concatenate strings to the passed caller series of string. Distinct values from a different series can be pas
3 min read
Python | Concatenate two lists element-wise
Sometimes we come across this type of problem in which we require to leave each element of one list with the other. This type of problems usually occurs in developments in which we have the combined information, like names and surnames in different lists. Let's discuss certain ways in which this task can be performed. Method #1 : Using list compreh
4 min read
Python program to concatenate Strings around K
Given List of Strings, join all the strings which occurs around string K. Input : test_list = ["Gfg", "*", "is", "best", "*", "love", "gfg"], K = "*" Output : ['Gfg*is', 'best*love', 'gfg'] Explanation : All elements around * are joined.Input : test_list = ["Gfg", "$", "is", "best", "$", "love", "gfg"], K = "$" Output : ['Gfg$is', 'best$love', 'gfg
5 min read
Python | Concatenate dictionary value lists
Sometimes, while working with dictionaries, we might have a problem in which we have lists as it's value and wish to have it cumulatively in single list by concatenation. This problem can occur in web development domain. Let's discuss certain ways in which this task can be performed. Method #1 : Using sum() + values() This is the most recommended m
5 min read
Python | Ways to concatenate tuples
Many times, while working with records, we can have a problem in which we need to add two records and store them together. This requires concatenation. As tuples are immutable, this task becomes little complex. Let's discuss certain ways in which this task can be performed. Method #1 : Using + operator This is the most Pythonic and recommended meth
6 min read
Python | Numpy np.ma.concatenate() method
With the help of np.ma.concatenate() method, we can concatenate two arrays with the help of np.ma.concatenate() method. Syntax : np.ma.concatenate([list1, list2]) Return : Return the array after concatenation. Example #1 : In this example we can see that by using np.ma.concatenate() method, we are able to get the concatenate array with the help of
1 min read
Python | How to Concatenate tuples to nested tuples
Sometimes, while working with tuples, we can have a problem in which we need to convert individual records into a nested collection yet remaining as separate element. Usual addition of tuples, generally adds the contents and hence flattens the resultant container, this is usually undesired. Let's discuss certain ways in which this problem is solved
6 min read
Practice Tags :
three90RightbarBannerImg