<?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: RSS reader &#8211; Part Two (and Functions)</title>
	<atom:link href="http://www.learningpython.com/2006/01/24/rss-reader-part-two-and-functions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.learningpython.com/2006/01/24/rss-reader-part-two-and-functions/</link>
	<description>one man's journey into python...</description>
	<lastBuildDate>Thu, 27 May 2010 10:43:57 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kristiyan Georgiev</title>
		<link>http://www.learningpython.com/2006/01/24/rss-reader-part-two-and-functions/comment-page-1/#comment-161850</link>
		<dc:creator>Kristiyan Georgiev</dc:creator>
		<pubDate>Wed, 10 Mar 2010 02:44:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=10#comment-161850</guid>
		<description>I found a typo 

def count(nNum):
    &quot;&quot;&quot;This function prints out the numbers from 1 to nNum&quot;&quot;&quot;
    x = 1
    while x &amp;lt: nNum :
        print x
        x = x +1

should be 

def count(nNum):
    &quot;&quot;&quot;This function prints out the numbers from 1 to nNum&quot;&quot;&quot;
    x = 1
    while x &lt; nNum :
        print x
        x = x +1</description>
		<content:encoded><![CDATA[<p>I found a typo </p>
<p>def count(nNum):<br />
    &#8220;&#8221;"This function prints out the numbers from 1 to nNum&#8221;"&#8221;<br />
    x = 1<br />
    while x &amp;lt: nNum :<br />
        print x<br />
        x = x +1</p>
<p>should be </p>
<p>def count(nNum):<br />
    &#8220;&#8221;"This function prints out the numbers from 1 to nNum&#8221;"&#8221;<br />
    x = 1<br />
    while x &lt; nNum :<br />
        print x<br />
        x = x +1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: learning python &#187; Blog Archive &#187; RSS reader - Part Three - Generator Class</title>
		<link>http://www.learningpython.com/2006/01/24/rss-reader-part-two-and-functions/comment-page-1/#comment-10</link>
		<dc:creator>learning python &#187; Blog Archive &#187; RSS reader - Part Three - Generator Class</dc:creator>
		<pubDate>Tue, 31 Jan 2006 04:54:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=10#comment-10</guid>
		<description>[...] Please remember to read part one and part two. [...]</description>
		<content:encoded><![CDATA[<p>[...] Please remember to read part one and part two. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
