how to convert list of lists to one list using Python

PHOTO EMBED

Mon May 20 2024 18:56:29 GMT+0000 (Coordinated Universal Time)

Saved by @freepythoncode ##python #coding #python #programming #list

myLists = [
    [1, 2, 3],
    [4, 5, 6],
    [7, 8, 9]
]

def to_one_list(myLists):
    myList = []
    for _list in myLists:
        for l in _list:
            myList.append(l)

    return myList

print(to_one_list(myLists = myLists))
content_copyCOPY