<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Map, Filter, and Reduce over Python Dictionaries</title>
	<atom:link href="http://badpopcorn.com/blog/2006/03/16/map-filter-and-reduce-over-python-dictionaries/feed/" rel="self" type="application/rss+xml" />
	<link>http://badpopcorn.com/blog/2006/03/16/map-filter-and-reduce-over-python-dictionaries/</link>
	<description>Solutions for anything... except popcorn.</description>
	<lastBuildDate>Tue, 25 May 2010 09:36:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: vrde</title>
		<link>http://badpopcorn.com/blog/2006/03/16/map-filter-and-reduce-over-python-dictionaries/comment-page-1/#comment-38849</link>
		<dc:creator>vrde</dc:creator>
		<pubDate>Mon, 19 Oct 2009 23:02:16 +0000</pubDate>
		<guid isPermaLink="false">http://badpopcorn.com/2006/03/16/map-filter-and-reduce-over-python-dictionaries/#comment-38849</guid>
		<description>@ibotty: I think you mean the &lt;code&gt;items&lt;/code&gt; method:
&lt;code&gt;
&gt;&gt;&gt; dict(a=1, b=2, c=3).items()
[(&#039;a&#039;, 1), (&#039;c&#039;, 3), (&#039;b&#039;, 2)]
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>@ibotty: I think you mean the <code>items</code> method:<br />
<pre><code>&gt;&gt;&gt; dict(a=1, b=2, c=3).items()
[('a', 1), ('c', 3), ('b', 2)]</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: ibotty</title>
		<link>http://badpopcorn.com/blog/2006/03/16/map-filter-and-reduce-over-python-dictionaries/comment-page-1/#comment-38848</link>
		<dc:creator>ibotty</dc:creator>
		<pubDate>Tue, 22 Sep 2009 08:54:27 +0000</pubDate>
		<guid isPermaLink="false">http://badpopcorn.com/2006/03/16/map-filter-and-reduce-over-python-dictionaries/#comment-38848</guid>
		<description>just for reference:

&gt;&gt;&gt; dict2list (d)
is the same as
&gt;&gt;&gt; d.values()
(i. e.: dict2list = lambda d: d.values())</description>
		<content:encoded><![CDATA[<p>just for reference:</p>
<p>&gt;&gt;&gt; dict2list (d)<br />
is the same as<br />
&gt;&gt;&gt; d.values()<br />
(i. e.: dict2list = lambda d: d.values())</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sonny</title>
		<link>http://badpopcorn.com/blog/2006/03/16/map-filter-and-reduce-over-python-dictionaries/comment-page-1/#comment-38846</link>
		<dc:creator>Sonny</dc:creator>
		<pubDate>Sun, 09 Aug 2009 16:39:41 +0000</pubDate>
		<guid isPermaLink="false">http://badpopcorn.com/2006/03/16/map-filter-and-reduce-over-python-dictionaries/#comment-38846</guid>
		<description>very cool thanks for this</description>
		<content:encoded><![CDATA[<p>very cool thanks for this</p>
]]></content:encoded>
	</item>
</channel>
</rss>
