<?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: Uniquifying lists with sets and dictionaries</title>
	<atom:link href="http://python.genedrift.org/2008/01/29/uniquifying-lists-with-sets-and-dictionaries/feed/" rel="self" type="application/rss+xml" />
	<link>http://python.genedrift.org/2008/01/29/uniquifying-lists-with-sets-and-dictionaries/</link>
	<description>a step-by-step guide to create Python applications in bioinformatics</description>
	<lastBuildDate>Sun, 02 May 2010 04:24:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1-alpha</generator>
	<item>
		<title>By: Python sets and intersections</title>
		<link>http://python.genedrift.org/2008/01/29/uniquifying-lists-with-sets-and-dictionaries/comment-page-1/#comment-10243</link>
		<dc:creator>Python sets and intersections</dc:creator>
		<pubDate>Fri, 14 Mar 2008 19:37:39 +0000</pubDate>
		<guid isPermaLink="false">http://python.genedrift.org/2008/01/29/uniquifying-lists-with-sets-and-dictionaries/#comment-10243</guid>
		<description>[...] ago we saw how to use sets and uniquify lists. This time we will see anothe example of the use of [...]</description>
		<content:encoded><![CDATA[<p>[...] ago we saw how to use sets and uniquify lists. This time we will see anothe example of the use of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paulo Nuin</title>
		<link>http://python.genedrift.org/2008/01/29/uniquifying-lists-with-sets-and-dictionaries/comment-page-1/#comment-10175</link>
		<dc:creator>Paulo Nuin</dc:creator>
		<pubDate>Thu, 13 Mar 2008 20:23:59 +0000</pubDate>
		<guid isPermaLink="false">http://python.genedrift.org/2008/01/29/uniquifying-lists-with-sets-and-dictionaries/#comment-10175</guid>
		<description>Nice. Thanks a lot, I will add the entry as another option.
Cheers</description>
		<content:encoded><![CDATA[<p>Nice. Thanks a lot, I will add the entry as another option.<br />
Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Collins</title>
		<link>http://python.genedrift.org/2008/01/29/uniquifying-lists-with-sets-and-dictionaries/comment-page-1/#comment-10174</link>
		<dc:creator>Nathan Collins</dc:creator>
		<pubDate>Thu, 13 Mar 2008 20:02:09 +0000</pubDate>
		<guid isPermaLink="false">http://python.genedrift.org/2008/01/29/uniquifying-lists-with-sets-and-dictionaries/#comment-10174</guid>
		<description>There&#039;s a much shorter version of the dictionary solution (I didn&#039;t make it up):

dict.fromkeys(mylist).keys()</description>
		<content:encoded><![CDATA[<p>There&#8217;s a much shorter version of the dictionary solution (I didn&#8217;t make it up):</p>
<p>dict.fromkeys(mylist).keys()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nuin</title>
		<link>http://python.genedrift.org/2008/01/29/uniquifying-lists-with-sets-and-dictionaries/comment-page-1/#comment-8072</link>
		<dc:creator>nuin</dc:creator>
		<pubDate>Wed, 30 Jan 2008 15:09:57 +0000</pubDate>
		<guid isPermaLink="false">http://python.genedrift.org/2008/01/29/uniquifying-lists-with-sets-and-dictionaries/#comment-8072</guid>
		<description>Exactly. The post was written just to compare both. Sometimes you are caught without the right set of tools and knowing an alternative might be handy. Some people claim that sets are slower than dicts, while others claim the opposite.</description>
		<content:encoded><![CDATA[<p>Exactly. The post was written just to compare both. Sometimes you are caught without the right set of tools and knowing an alternative might be handy. Some people claim that sets are slower than dicts, while others claim the opposite.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paddy3118</title>
		<link>http://python.genedrift.org/2008/01/29/uniquifying-lists-with-sets-and-dictionaries/comment-page-1/#comment-8055</link>
		<dc:creator>Paddy3118</dc:creator>
		<pubDate>Wed, 30 Jan 2008 07:45:28 +0000</pubDate>
		<guid isPermaLink="false">http://python.genedrift.org/2008/01/29/uniquifying-lists-with-sets-and-dictionaries/#comment-8055</guid>
		<description>But if you are using a version of Python that has sets, there is no need to use the dict solution as this kind of thing is what sets were introduced for and saves having to think about dictionary values.

- Paddy.</description>
		<content:encoded><![CDATA[<p>But if you are using a version of Python that has sets, there is no need to use the dict solution as this kind of thing is what sets were introduced for and saves having to think about dictionary values.</p>
<p>- Paddy.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

