Python Forum
merging sublist into single list in python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
merging sublist into single list in python
#6
Just to use yield from Shifty
def flatten(seq):
    for item in seq:
        if isinstance(item, list):
            yield from flatten(item)
        else:
            yield item
>>> list1 = [ 'New', ['Group Name Details'], ['Group Name'], ['Person Phone Number'], ['Father Name']]
>>> [word for line in flatten(list1) for word in line.split()]
['New', 'Group', 'Name', 'Details', 'Group', 'Name', 'Person', 'Phone', 'Number', 'Father', 'Name']

>>> data = ['Andre Müller', ['hallo', '123'], [[[[['foo bar']]], 'bat']], 12]
>>> list(flatten(data))
['Andre Müller', 'hallo', '123', 'foo bar', 'bat', 12]
Reply


Messages In This Thread
RE: merging sublist into single list in python - by snippsat - Mar-22-2019, 07:10 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  J2534 Python Can Bus merging natezoom 0 765 May-01-2023, 10:37 PM
Last Post: natezoom
  python sql query single quote in a string mg24 1 1,144 Nov-18-2022, 08:01 PM
Last Post: deanhystad
  python Multithreading on single file mg24 3 1,834 Nov-05-2022, 01:33 PM
Last Post: snippsat
  Use one list as search key for another list with sublist of list jc4d 4 2,250 Jan-11-2022, 12:10 PM
Last Post: jc4d
Question Sublist/ Subarray into string Python SantiagoPB 2 2,187 Apr-23-2021, 07:03 PM
Last Post: SantiagoPB
  Parse String between 2 Delimiters and add as single list items lastyle 5 3,481 Apr-11-2021, 11:03 PM
Last Post: lastyle
  convert List with dictionaries to a single dictionary iamaghost 3 2,919 Jan-22-2021, 03:56 PM
Last Post: iamaghost
  How to append multiple <class 'str'> into a single List ahmedwaqas92 2 2,395 Jan-07-2021, 08:17 AM
Last Post: ahmedwaqas92
  Undo interation to make a single list? DustinKlent 2 2,231 Nov-29-2020, 03:41 AM
Last Post: DustinKlent
  unique (single) value in dict (or list) 3Pinter 5 2,559 Mar-27-2020, 12:55 PM
Last Post: 3Pinter

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020