Converting a deque object into list

42,638
>>> list(collections.deque((1, 2, 3)))
[1, 2, 3]
Share:
42,638
Julius F
Author by

Julius F

Updated on January 10, 2021

Comments

  • Julius F
    Julius F over 3 years

    Currently I fetch "list" data from my storage, "deque" it to work with that data.

    After processing the fetched data I have to put them back into the storage. This won't be a problem as long as I am not forced (at least I think so) to use Python's standard "list" object to save this data.

    Storage Service: Google Appengine.

    My work-around would be:

    dequeObj = deque(myData)
    my_list= list()
    for obj in dequeObj:
        my_list.append(obj)
    

    but this seems not very optimal.