Python program to concatenate Strings around K
Last Updated :
05 Apr, 2023
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']
Explanation : All elements around $ are joined.
Method 1: Using a loop
This is a brute way in which this task can be performed. In this, we iterate through all the elements and check for K, if found we perform the required concatenation with preceding and successive elements.
Python3
test_list = [ "Gfg" , "+" , "is" , "best" , "+" , "love" , "gfg" ]
print ( "The original list is : " + str (test_list))
K = "+"
res = []
idx = 0
while idx < len (test_list):
ele = test_list[idx]
if (idx < len (test_list) - 1 ) and test_list[idx + 1 ] = = K:
ele = ele + K + test_list[idx + 2 ]
idx + = 2
res.append(ele)
idx + = 1
print ( "Strings after required concatenation : " + str (res))
|
Output
The original list is : ['Gfg', '+', 'is', 'best', '+', 'love', 'gfg']
Strings after required concatenation : ['Gfg+is', 'best+love', 'gfg']
Time Complexity: O(n)
Auxiliary Space: O(n)
Method 2 : Using join() + replace() + split()
The combination of the above functions can be used to solve this problem. In this, we perform joining of all elements and then remove space around target K. Being treated as a single string, splitting the required string produces joined values around K.
Python3
test_list = [ "Gfg" , "+" , "is" , "best" , "+" , "love" , "gfg" ]
print ( "The original list is : " + str (test_list))
K = "+"
res = ' ' .join(test_list).replace( ' ' + K + ' ' , K).split()
print ( "Strings after required concatenation : " + str (res))
|
Output
The original list is : ['Gfg', '+', 'is', 'best', '+', 'love', 'gfg']
Strings after required concatenation : ['Gfg+is', 'best+love', 'gfg']
Time Complexity: O(n)
Auxiliary Space: O(n)
Method 3: Using list comprehension
Step-by-step approach:
- Initialize the list res to an empty list.
- Use a list comprehension to iterate over each element ele in the test_list.
- If the element ele is equal to K, then continue the iteration.
- If the element ele is not equal to K, then check the next element in the test_list.
- If the next element is also K, then concatenate the current element and the next element using K as a separator.
- Otherwise, append the current element to the res list.
- Return the res list.
Below is the implementation of the above approach:
Python3
test_list = [ "Gfg" , "+" , "is" , "best" , "+" , "love" , "gfg" ]
print ( "The original list is : " + str (test_list))
K = "+"
res = [test_list[i] + K + test_list[i + 1 ] if i + 1 < len (test_list) and test_list[i + 1 ] = = K else test_list[i] for i in range ( len (test_list)) if test_list[i]! = K]
print ( "Strings after required concatenation : " + str (res))
|
Output
The original list is : ['Gfg', '+', 'is', 'best', '+', 'love', 'gfg']
Strings after required concatenation : ['Gfg++', 'is', 'best++', 'love', 'gfg']
Time complexity: O(n), as we are iterating over the given list once using the list comprehension.
Auxiliary space: O(n), as we are creating a new list res of the same size as the given list.
Method 4: Using the reduce() function from the functools module:
Step-by-step approach:
- The reduce() function takes a function (lambda function in this case), a sequence, and an initial value (empty list in this case).
- The lambda function takes two arguments x and y, which represent the accumulated value and the next element of the sequence, respectively.
- If y is equal to K, the lambda function concatenates the last element of x with K and y and replaces the last element of x with the result.
- Otherwise, the lambda function simply adds y to x.
- Finally, the result is a list of concatenated strings.
Below is the implementation of the above approach:
Python3
from functools import reduce
test_list = [ "Gfg" , "+" , "is" , "best" , "+" , "love" , "gfg" ]
K = "+"
res = reduce ( lambda x, y: x[: - 1 ] + [x[ - 1 ] + K + y] if y = = K else x + [y], test_list, [])
print ( "Strings after required concatenation : " + str (res))
|
Output
Strings after required concatenation : ['Gfg++', 'is', 'best++', 'love', 'gfg']
Time Complexity: O(n), where n is the length of the input list test_list.
Auxiliary Space: O(n), where n is the length of the input list test_list.
Similar Reads
Python Program to Convert a List to String
In Python, converting a list to a string is a common operation. In this article, we will explore the several methods to convert a list into a string. The most common method to convert a list of strings into a single string is by using join() method. Let's take an example about how to do it. Using th
3 min read
Python program to Concatenate Kth index words of String
Given a string with words, concatenate the Kth index of each word. Input : test_str = 'geeksforgeeks best geeks', K = 3 Output : ktk Explanation : 3rd index of "geeksforgeeks" is k, "best" has 't' as 3rd element. Input : test_str = 'geeksforgeeks best geeks', K = 0 Output : gbg Method #1 : Using joi
4 min read
Python - Alternate Strings Concatenation
The problem of getting the concatenation of a list is quite generic and we might someday face the issue of getting the concatenation of alternate elements and get the list of 2 elements containing the concatenation of alternate elements. Letâs discuss certain ways in which this can be performed. Met
3 min read
Python Program to Convert Matrix to String
Program converts a 2D matrix (list of lists) into a single string, where all the matrix elements are arranged in row-major order. The elements are separated by spaces or any other delimiter, making it easy to represent matrix data as a string. Using List ComprehensionList comprehension provides a co
2 min read
Python - Concatenation of two String Tuples
Sometimes, while working with records, we can have a problem in which we may need to perform String concatenation of tuples. This problem can occur in day-day programming. Letâs discuss certain ways in which this task can be performed. Method #1 : Using zip() + generator expression The combination o
3 min read
Python - Convert Dictionary to Concatenated String
In Python, sometimes we need to convert a dictionary into a concatenated string. The keys and values of the dictionary are combined in a specific format to produce the desired string output. For example, given the dictionary {'a': 1, 'b': 2, 'c': 3}, we may want the string "a:1, b:2, c:3". Let's dis
3 min read
Python | Add one string to another
The concatenation of two strings has been discussed multiple times in various languages. But the task is how to add to a string in Python or append one string to another in Python. Example Input: 'GFG' + 'is best' Output: 'GFG is best' Explanation: Here we can add two string using "+" operator in Py
5 min read
Python program to remove last N characters from a string
In this article, weâll explore different ways to remove the last N characters from a string in Python. This common string manipulation task can be achieved using slicing, loops, or built-in methods for efficient and flexible solutions. Using String SlicingString slicing is one of the simplest and mo
2 min read
GFact | Most efficient way to Concatenate Strings in Python
Concatenation is an operation that is very frequently used in various problems related to strings. There are multiple methods to concat strings in various languages. Python is also such a language that supports various string concatenation methods. But have you ever wondered which one is the most ef
3 min read
Python program to count the number of characters in a String
The goal here is to count the number of characters in a string, which involves determining the total length of the string. For example, given a string like "GeeksForGeeks", we want to calculate how many characters it contains. Letâs explore different approaches to accomplish this. Using len()len() i
3 min read