<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss version="2.0">
    <channel>
        <title>Kodepython.org</title>
        <description>Learn Python Programming by Examples</description>
        <link>
        http://www.kodepython.org</link>
        <copyright>This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported
            License.
        </copyright>
            <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/kodepythonrss" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="kodepythonrss" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
            <title>How to write Hello, World! program in Python?</title>
            <link>
            http://www.kodepython.org/examples/1.html</link>
            <guid>http://www.kodepython.org/examples/1.html</guid>
            <description>This will be your first code in Python. Traditionally, when we learn a new language for the first time we will wrote the famous Hello World program. Create the following program using your favorite editor and save it in a file called &lt;code&gt;hello.py&lt;/code&gt;.&lt;/p&gt;

&lt;div class="notranslate" style="overflow: auto; margin-bottom: 15px;"&gt;&lt;pre class="brush: python; gutter: true;" style="overflow: hidden;"&gt;
# Print Hello, World!
print "Hello, World!"
&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;To run this code you can execute the &lt;code&gt;python&lt;/code&gt; command as given below.&lt;/p&gt;

&lt;pre&gt;
$ python hello.py
&lt;/pre&gt;

&lt;p&gt;The output as expected that it will print the following line:&lt;/p&gt;

&lt;pre&gt;
Hello, World!
&lt;/pre&gt;

&lt;p&gt;Welcome to Python! and enjoy the journey into this programming language.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
            <pubDate>2012-05-30 17:23:15</pubDate>
        </item>
        </channel>
</rss>
