Sometimes, while working with Python containers, we can have a problem in which we need to perform addition of one container with another. This kind of problem can have occurrence in many data domains across Computer Science and Programming. Let’s discuss certain ways in which this task can be performed.
Method 1 : Using += operator [list + tuple]
This operator can be used to join a list with a tuple. Internally its working is similar to that of list.extend(), which can have any iterable as its argument, tuple in this case.
Python3
test_list = [ 5 , 6 , 7 ]
print ( "The original list is : " + str (test_list))
test_tup = ( 9 , 10 )
test_list + = test_tup
print ( "The container after addition : " + str (test_list))
|
Output :
The original list is : [5, 6, 7]
The container after addition : [5, 6, 7, 9, 10]
Time complexity: O(1) – The += operator takes constant time to add a tuple to a list.
Auxiliary space: O(1) – No additional space is used, as the original list and tuple are modified in place.
Method #2 : Using tuple(), data type conversion [tuple + list]
The following technique is used to add list to a tuple. The tuple has to converted to list and list has to be added, at last resultant is converted to tuple.
Python3
test_list = [ 5 , 6 , 7 ]
print ( "The original list is : " + str (test_list))
test_tup = ( 9 , 10 )
res = tuple ( list (test_tup) + test_list)
print ( "The container after addition : " + str (res))
|
Output :
The original list is : [5, 6, 7]
The container after addition : (9, 10, 5, 6, 7)
Time complexity: O(1) – the code has a constant runtime that is not dependent on the size of the input.
Auxiliary space: O(n) – the space complexity of the code is dependent on the size of the input list.
Method #3: Using tuple(),list() and extend() methods
Python3
test_list = [ 5 , 6 , 7 ]
test_tup = ( 9 , 10 )
print ( "The original list is : " + str (test_list))
test_list.extend( list (test_tup))
print ( "The container after addition : " + str (test_list))
test_list = [ 1 , 2 , 3 , 4 ]
test_tup = ( 5 , 6 )
print ( "The original tuple is : " + str (test_tup))
test_tup = list (test_tup)
test_tup.extend(test_list)
test_tup = tuple (test_tup)
print ( "The container after addition : " + str (test_tup))
|
Output
The original list is : [5, 6, 7]
The container after addition : [5, 6, 7, 9, 10]
The original tuple is : (5, 6)
The container after addition : (5, 6, 1, 2, 3, 4)
Time complexity: O(n), where n is the size of the tuple being added.
Auxiliary space: O(n), where n is the size of the tuple being added.
METHOD 4:Using the insert() method: The given code defines a list my_list and a tuple my_tuple. It then inserts the tuple at index 3 of the list using the insert() method and prints the modified list.
- Define a list my_list with elements 5, 6, and 7.
- Define a tuple my_tuple with elements 9 and 10.
- Define a variable index and set it to 3.
- Call the insert() method on my_list and pass index and my_tuple as arguments.
- Print the modified list.
Python3
my_list = [ 5 , 6 , 7 ]
my_tuple = ( 9 , 10 )
index = 3
my_list.insert(index, my_tuple)
print ( "List after addition: " , my_list)
|
Output
List after addition: [5, 6, 7, (9, 10)]
Time Complexity: O(n)
Space Complexity: O(1)
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
20 Apr, 2023
Like Article
Save Article