Top index Wirbel home

::items

set(T).items() - return items of a set as list
dict(A.items(B) d) - returns all items of a dictionary as list of pairs

set(T).items() returns all a list of all items of a set. This is the same as list(aset)

dict(A.items(B) d) returns a list of pairs. Each pair consist of one key and the accoring value of the dictionary d. The order of the items is implementation specific but reflects the order of keys() and values().

See also

dict, keys, list, values