本文介紹了如何使用 __getitem__ 和 __iter__ 并從字典中返回值?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我有一個帶有字典的對象,我想通過 __getitem__
訪問該對象并對其進行迭代(僅值,鍵無關緊要),但不知道該怎么做.p>
例如:
Python 2.5.2 (r252:60911, Jul 22, 2009, 15:33:10)>>>類庫(對象):... def __init__(self):... self.books = {'title':對象,'title2':對象,'title3':對象,}... def __getitem__(self, i):...返回 self.books[i]...>>>圖書館=圖書館()>>>圖書館['標題']<輸入對象">>>>圖書館借書:... 打印書...回溯(最近一次通話最后):<module> 中的文件<stdin>"第 1 行文件<stdin>",第 5 行,在 __getitem__ 中關鍵錯誤:0>>>
我如何告訴它為字典中的每個項目簡單地返回 object
(鍵無關緊要)?
解決方案
def __iter__(self): return self.books.itervalues()
I have an object with a dictionary that I want to access via __getitem__
as well as iterate over (values only, keys don't matter) but am not sure how to do it.
For example:
Python 2.5.2 (r252:60911, Jul 22 2009, 15:33:10)
>>> class Library(object):
... def __init__(self):
... self.books = { 'title' : object, 'title2' : object, 'title3' : object, }
... def __getitem__(self, i):
... return self.books[i]
...
>>> library = Library()
>>> library['title']
<type 'object'>
>>> for book in library:
... print book
...
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 5, in __getitem__
KeyError: 0
>>>
How do I tell it to simply return the object
for each item in the dictionary (the key doesn't matter) ?
解決方案
def __iter__(self): return self.books.itervalues()
這篇關于如何使用 __getitem__ 和 __iter__ 并從字典中返回值?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!