Python | Arrange Tuples consecutively in list
Sometimes, while working with tuple list, we may require a case in which we require that a tuple starts from the end of previous tuple, i.e the element 0 of every tuple should be equal to ending element of tuple in list of tuple. This type of problem and sorting is useful in competitive programming. Let’s discuss way in which this problem can be solved.
Method : Using loop + dict()
This task can easily be solved by converting a tuple container list to dictionary and then it’s easy to access a value of a key and arrange them accordingly to sort in a way in which one tuple element begins with the ending of other element.
# Python3 code to demonstrate working of # Arranging Tuples consecutively in list # using loop + dict() # initialize list test_list = [( 5 , 6 ), ( 11 , 8 ), ( 6 , 11 ), ( 8 , 9 ) ] # printing original list print ( "The original list is : " + str (test_list)) # Arranging Tuples consecutively in list # using loop + dict() temp = dict (test_list) ele = test_list[ 0 ][ 0 ] res = [] for _ in range ( len (test_list)): res.append((ele, temp[ele])) ele = temp[ele] # printing result print ( "The arranged list is : " + str (res)) |
The original list is : [(5, 6), (11, 8), (6, 11), (8, 9)] The arranged list is : [(5, 6), (6, 11), (11, 8), (8, 9)]
Recommended Posts:
- Python | Remove tuples from list of tuples if greater than n
- Python | Remove duplicate tuples from list of tuples
- Python | Count tuples occurrence in list of tuples
- Python | Remove tuples having duplicate first value from given list of tuples
- Python | Convert string tuples to list tuples
- Python | Find the tuples containing the given element from a list of tuples
- Python | Combining tuples in list of tuples
- Python program to create a list of tuples from given list having number and its cube in each tuple
- Python | Convert list of strings to list of tuples
- Python | Convert list of tuples to list of strings
- Python | Convert list of tuples to list of list
- Python | Update a list of tuples using another list
- Python | Convert list of tuples into list
- Python | Min and Max value in list of tuples
- Python | List of tuples to String
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.