Kaydet (Commit) d292a17f authored tarafından Raymond Hettinger's avatar Raymond Hettinger

2-to-3 fixup for map() example in docs

üst 20933e08
......@@ -387,7 +387,7 @@ expect a function argument.
>>> inventory = [('apple', 3), ('banana', 2), ('pear', 5), ('orange', 1)]
>>> getcount = itemgetter(1)
>>> map(getcount, inventory)
>>> list(map(getcount, inventory))
[3, 2, 5, 1]
>>> sorted(inventory, key=getcount)
[('orange', 1), ('banana', 2), ('apple', 3), ('pear', 5)]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment