<?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: What Code Golf Taught Me About Python</title>
	<atom:link href="http://lbrandy.com/blog/2008/09/what-code-golf-taught-me-about-python/feed/" rel="self" type="application/rss+xml" />
	<link>http://lbrandy.com/blog/2008/09/what-code-golf-taught-me-about-python/</link>
	<description>{ on programming and the internets, every monday }</description>
	<lastBuildDate>Mon, 23 Aug 2010 09:39:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: lbrandy.com &#187; Blog Archive &#187; Some tips for getting started on Project Euler</title>
		<link>http://lbrandy.com/blog/2008/09/what-code-golf-taught-me-about-python/comment-page-1/#comment-4176</link>
		<dc:creator>lbrandy.com &#187; Blog Archive &#187; Some tips for getting started on Project Euler</dc:creator>
		<pubDate>Mon, 23 Mar 2009 11:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://lbrandy.com/blog/?p=132#comment-4176</guid>
		<description>[...] casually mentioned that he had messed around with Project Euler. He knew I was a bit of a geek for online programming fun and games. Project Euler is a very large set of programming puzzles (247, to date) that tests your ability to [...]</description>
		<content:encoded><![CDATA[<p>[...] casually mentioned that he had messed around with Project Euler. He knew I was a bit of a geek for online programming fun and games. Project Euler is a very large set of programming puzzles (247, to date) that tests your ability to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Golf Platzrief</title>
		<link>http://lbrandy.com/blog/2008/09/what-code-golf-taught-me-about-python/comment-page-1/#comment-1181</link>
		<dc:creator>Golf Platzrief</dc:creator>
		<pubDate>Thu, 11 Dec 2008 02:00:50 +0000</pubDate>
		<guid isPermaLink="false">http://lbrandy.com/blog/?p=132#comment-1181</guid>
		<description>There are actually alot of times when you can remove spaces that just seem plain wrong. The same trick works with parentheses as well.

Another example is with numeric literals:

1or 2

… is valid python, as well.

I have a list of similar things that make great tricks in python but that you’d never ever use in real coding.</description>
		<content:encoded><![CDATA[<p>There are actually alot of times when you can remove spaces that just seem plain wrong. The same trick works with parentheses as well.</p>
<p>Another example is with numeric literals:</p>
<p>1or 2</p>
<p>… is valid python, as well.</p>
<p>I have a list of similar things that make great tricks in python but that you’d never ever use in real coding.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: louis</title>
		<link>http://lbrandy.com/blog/2008/09/what-code-golf-taught-me-about-python/comment-page-1/#comment-260</link>
		<dc:creator>louis</dc:creator>
		<pubDate>Wed, 08 Oct 2008 15:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://lbrandy.com/blog/?p=132#comment-260</guid>
		<description>Hey hendrik,

Definitely seen your name on the charts. I&#039;ve been taking a break for a few weeks now consumed with other hobbies. The dancing queens is still in the back of my mind since it&#039;s one of the simplest of my unsolved problems (that and Hanoi).</description>
		<content:encoded><![CDATA[<p>Hey hendrik,</p>
<p>Definitely seen your name on the charts. I&#8217;ve been taking a break for a few weeks now consumed with other hobbies. The dancing queens is still in the back of my mind since it&#8217;s one of the simplest of my unsolved problems (that and Hanoi).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hendrik</title>
		<link>http://lbrandy.com/blog/2008/09/what-code-golf-taught-me-about-python/comment-page-1/#comment-236</link>
		<dc:creator>hendrik</dc:creator>
		<pubDate>Mon, 06 Oct 2008 22:37:44 +0000</pubDate>
		<guid isPermaLink="false">http://lbrandy.com/blog/?p=132#comment-236</guid>
		<description>Hi Louis,

I also have been playing codegolf. You might have seen. I think you are really a great competitor. Much faster solving a problem efficiently than me. I have started thinking how to solve dancing queens and conways game. Not easy.

/Hendrik</description>
		<content:encoded><![CDATA[<p>Hi Louis,</p>
<p>I also have been playing codegolf. You might have seen. I think you are really a great competitor. Much faster solving a problem efficiently than me. I have started thinking how to solve dancing queens and conways game. Not easy.</p>
<p>/Hendrik</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Gregg</title>
		<link>http://lbrandy.com/blog/2008/09/what-code-golf-taught-me-about-python/comment-page-1/#comment-199</link>
		<dc:creator>Chris Gregg</dc:creator>
		<pubDate>Tue, 30 Sep 2008 14:30:52 +0000</pubDate>
		<guid isPermaLink="false">http://lbrandy.com/blog/?p=132#comment-199</guid>
		<description>Thanks for the cool tutorial.  The one caveat I have for us beginner python programmers is the following:

a=b=0                    # I had no idea python let you do this

This is great for values, but not objects like lists (unless you want them to be the same object).  I.e.,

a = b = [1,2,3]
a[1] = 5

Because a and b are now the same object, b[1] also equals 5.</description>
		<content:encoded><![CDATA[<p>Thanks for the cool tutorial.  The one caveat I have for us beginner python programmers is the following:</p>
<p>a=b=0                    # I had no idea python let you do this</p>
<p>This is great for values, but not objects like lists (unless you want them to be the same object).  I.e.,</p>
<p>a = b = [1,2,3]<br />
a[1] = 5</p>
<p>Because a and b are now the same object, b[1] also equals 5.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: louis</title>
		<link>http://lbrandy.com/blog/2008/09/what-code-golf-taught-me-about-python/comment-page-1/#comment-195</link>
		<dc:creator>louis</dc:creator>
		<pubDate>Tue, 30 Sep 2008 12:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://lbrandy.com/blog/?p=132#comment-195</guid>
		<description>@Ben,

There are actually alot of times when you can remove spaces that just seem plain wrong. The same trick works with parentheses as well.

Another example is with numeric literals:

1or 2

... is valid python, as well.

I have a list of similar things that make great tricks in python but that you&#039;d never ever use in real coding.</description>
		<content:encoded><![CDATA[<p>@Ben,</p>
<p>There are actually alot of times when you can remove spaces that just seem plain wrong. The same trick works with parentheses as well.</p>
<p>Another example is with numeric literals:</p>
<p>1or 2</p>
<p>&#8230; is valid python, as well.</p>
<p>I have a list of similar things that make great tricks in python but that you&#8217;d never ever use in real coding.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://lbrandy.com/blog/2008/09/what-code-golf-taught-me-about-python/comment-page-1/#comment-193</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Tue, 30 Sep 2008 08:26:50 +0000</pubDate>
		<guid isPermaLink="false">http://lbrandy.com/blog/?p=132#comment-193</guid>
		<description>My favorite thing I learned was that you could do this:

print&quot;foo&quot;

*without* a space.  Which I would never use outside of code golf and actually bothers me a bit that it works.  But I like knowing it :)</description>
		<content:encoded><![CDATA[<p>My favorite thing I learned was that you could do this:</p>
<p>print&#8221;foo&#8221;</p>
<p>*without* a space.  Which I would never use outside of code golf and actually bothers me a bit that it works.  But I like knowing it <img src='http://lbrandy.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
