Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前我从我的存储中获取“列表”数据,“deque”它来处理这些数据。
处理获取的数据后,我必须将它们放回存储中。只要我没有被强迫(至少我是这么认为)使用 Python 的标准“列表”对象来保存这些数据,这不会是一个问题。
存储服务: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]