本文介绍了将双端队列对象转换为列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
目前,我从存储中获取列表"数据,然后将其"deque"以用于该数据.在处理了获取的数据之后,我必须将它们放回存储中.只要不被迫(至少我认为是这样)不使用python的标准列表"对象来保存此数据,就不会有问题.
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.
存储服务:Google Appengine.
Storage Service: Google Appengine.
我的解决方法是:
dequeObj = deque(myData)
my_list= list()
for obj in dequeObj:
my_list.append(obj)
但这似乎不是很理想.
推荐答案
>>> list(collections.deque((1, 2, 3)))
[1, 2, 3]
这篇关于将双端队列对象转换为列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!