<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Introduction to generators in Python</title>
	<link>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/</link>
	<description>Mr Quinn, one word for your fans? "Ehm, astronaut."</description>
	<pubDate>Wed, 07 Jan 2009 04:26:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: Jessie</title>
		<link>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-754</link>
		<dc:creator>Jessie</dc:creator>
		<pubDate>Sun, 16 Nov 2008 17:23:13 +0000</pubDate>
		<guid>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-754</guid>
		<description>&lt;strong&gt;free resume generators...&lt;/strong&gt;

Not everyone will agree with your views expressed in this article, but thats their loss not yours....</description>
		<content:encoded><![CDATA[<p><strong>free resume generators&#8230;</strong></p>
<p>Not everyone will agree with your views expressed in this article, but thats their loss not yours&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rapidshare links</title>
		<link>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-746</link>
		<dc:creator>rapidshare links</dc:creator>
		<pubDate>Wed, 05 Nov 2008 04:54:41 +0000</pubDate>
		<guid>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-746</guid>
		<description>&lt;strong&gt;yo...&lt;/strong&gt;

nice...</description>
		<content:encoded><![CDATA[<p><strong>yo&#8230;</strong></p>
<p>nice&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Private Krankenversicherung</title>
		<link>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-680</link>
		<dc:creator>Private Krankenversicherung</dc:creator>
		<pubDate>Sat, 25 Oct 2008 10:13:14 +0000</pubDate>
		<guid>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-680</guid>
		<description>Excelent posts and comments. I wish good luck from Private Krankenversicherung</description>
		<content:encoded><![CDATA[<p>Excelent posts and comments. I wish good luck from Private Krankenversicherung</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Private Krankenversicherung</title>
		<link>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-676</link>
		<dc:creator>Private Krankenversicherung</dc:creator>
		<pubDate>Wed, 22 Oct 2008 08:36:20 +0000</pubDate>
		<guid>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-676</guid>
		<description>Excelent posts and blog. I wish good luck from Private Krankenversicherung</description>
		<content:encoded><![CDATA[<p>Excelent posts and blog. I wish good luck from Private Krankenversicherung</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-568</link>
		<dc:creator>James</dc:creator>
		<pubDate>Wed, 03 Sep 2008 00:24:07 +0000</pubDate>
		<guid>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-568</guid>
		<description>love it! keep it coming :)</description>
		<content:encoded><![CDATA[<p>love it! keep it coming :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Love and Theft &#187; Blog Archive &#187; Managing asynchronous operations with python generators (part3)</title>
		<link>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-564</link>
		<dc:creator>Love and Theft &#187; Blog Archive &#187; Managing asynchronous operations with python generators (part3)</dc:creator>
		<pubDate>Mon, 01 Sep 2008 21:29:15 +0000</pubDate>
		<guid>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-564</guid>
		<description>[...] 1: Introduction to generators in Python Part 2: Indepth generator usage in Python (part2) Part 3: Managing asynchronous operations with [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] 1: Introduction to generators in Python Part 2: Indepth generator usage in Python (part2) Part 3: Managing asynchronous operations with [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fredrik Holmström</title>
		<link>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-562</link>
		<dc:creator>Fredrik Holmström</dc:creator>
		<pubDate>Sat, 30 Aug 2008 13:54:41 +0000</pubDate>
		<guid>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-562</guid>
		<description>AC: Yes you're 100% correct, I didn't want to use that loop construct inside the generator because for people new to generators the "for w in word" is easily confused with generators, also I did write "While the above function is practically useless in python - it’s a good example on how generators and the for statement work together" just after it.

def letters(word):
....for w in word
........yield w

for letter in letters("Hello World"):
....print letter

But you're right and i probably should've used the other (and correct/pythonic) way.</description>
		<content:encoded><![CDATA[<p>AC: Yes you&#8217;re 100% correct, I didn&#8217;t want to use that loop construct inside the generator because for people new to generators the &#8220;for w in word&#8221; is easily confused with generators, also I did write &#8220;While the above function is practically useless in python - it’s a good example on how generators and the for statement work together&#8221; just after it.</p>
<p>def letters(word):<br />
&#8230;.for w in word<br />
&#8230;&#8230;..yield w</p>
<p>for letter in letters(&#8221;Hello World&#8221;):<br />
&#8230;.print letter</p>
<p>But you&#8217;re right and i probably should&#8217;ve used the other (and correct/pythonic) way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AC</title>
		<link>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-561</link>
		<dc:creator>AC</dc:creator>
		<pubDate>Sat, 30 Aug 2008 13:19:39 +0000</pubDate>
		<guid>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-561</guid>
		<description>If I am not mistaken, the following loop ...

        for i in range(len(word)):
                yield word[i]

... could be simplified:

        for c in word:
                yield c
</description>
		<content:encoded><![CDATA[<p>If I am not mistaken, the following loop &#8230;</p>
<p>        for i in range(len(word)):<br />
                yield word[i]</p>
<p>&#8230; could be simplified:</p>
<p>        for c in word:<br />
                yield c</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Love and Theft &#187; Blog Archive &#187; Indepth generator usage in Python (part2)</title>
		<link>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-559</link>
		<dc:creator>Love and Theft &#187; Blog Archive &#187; Indepth generator usage in Python (part2)</dc:creator>
		<pubDate>Sat, 30 Aug 2008 10:05:19 +0000</pubDate>
		<guid>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-559</guid>
		<description>[...] RSS Feed       &#171; Introduction to generators in Python [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] RSS Feed       &laquo; Introduction to generators in Python [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-558</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sat, 30 Aug 2008 01:34:54 +0000</pubDate>
		<guid>http://loveandtheft.org/2008/08/29/introduction-to-generators-in-python/#comment-558</guid>
		<description>Interesting post. I haven't been introduced to the idea of generators before. I'm looking forward to learning about the rest of their secrets.</description>
		<content:encoded><![CDATA[<p>Interesting post. I haven&#8217;t been introduced to the idea of generators before. I&#8217;m looking forward to learning about the rest of their secrets.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
