30/09/2018, 19:25

Items() và iteritems() dùng để làm gì?

dict.items(): return a copy of the dictionary’s list of (key, value) pairs.

dict.iteritems(): return an iterator over the dictionary’s (key, value) pairs.

Mình không hiểu iterator nghĩa là cái gì, cho nên không hiểu luôn ý nghĩa của hai cái hàm trên…
Thêm nữa là hàm set, ví dụ:

eg = { 'a': 1, 'b': 2 }
eg_set = set(eg.iteritems())
Thành Phạm viết 21:29 ngày 30/09/2018

Mình thấy cái iterator giống kiểu “bố” của mấy thằng string, list, dict, tuple,…

http://zetcode.com/lang/python/itergener/
http://www.tutorialspoint.com/python/dictionary_items.htm
http://www.dotnetperls.com/dictionary-python

Khác biệt giữa 2 cái đó

stackoverflow.com
the wolf

What is the difference between dict.items() and dict.iteritems()?

python, dictionary
asked by the wolf on 02:58AM - 05 May 12
Bài liên quan
0