<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Chris' Blog &#187; python</title>
	<atom:link href="http://blog.hehachris.com/archives/tag/python/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.hehachris.com</link>
	<description>沉默是因為包容</description>
	<lastBuildDate>Mon, 26 Oct 2009 07:42:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>print() in Python 3.0</title>
		<link>http://blog.hehachris.com/archives/174</link>
		<comments>http://blog.hehachris.com/archives/174#comments</comments>
		<pubDate>Sun, 18 Jan 2009 15:35:33 +0000</pubDate>
		<dc:creator>Chris Lam</dc:creator>
				<category><![CDATA[生活隨筆]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://blog.hehachris.com/?p=174</guid>
		<description><![CDATA[In python 2.6 or below, &#8220;print&#8221; is just a simple statement to print output:
print &#34;Hello World!&#34;
print var1, var2
Now the print statement is replaced by the print() function in Python 3.0:
print(&#34;Hello World!&#34;)
print(var1, var2)
To suppress the trailing new line:
print(&#34;Hello World!&#34;, end=&#34; &#34;)
print(&#34;Hello World again!&#34;)
The above code will print: Hello World! Hello World again!
Reference: What’s New in Python [...]]]></description>
		<wfw:commentRss>http://blog.hehachris.com/archives/174/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
