<?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>Learn Programming Online &#187; Python</title>
	<atom:link href="http://freeonlineprogrammingtutorials.com/category/python/feed" rel="self" type="application/rss+xml" />
	<link>http://freeonlineprogrammingtutorials.com</link>
	<description>- Become a Coding Freak Today!</description>
	<lastBuildDate>Thu, 22 Mar 2012 06:16:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Python Debugging</title>
		<link>http://freeonlineprogrammingtutorials.com/python-debugging</link>
		<comments>http://freeonlineprogrammingtutorials.com/python-debugging#comments</comments>
		<pubDate>Wed, 16 Jun 2010 12:47:06 +0000</pubDate>
		<dc:creator>WebProgrammer</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Python Debugging]]></category>

		<guid isPermaLink="false">http://freeonlineprogrammingtutorials.com/?p=174</guid>
		<description><![CDATA[Here&#8217;s the brief about the Python Debugging and testing. • IDLE supports debugging • A simple text mode interactive debugger is also available • ‘assert’ statement is used to introduce debugging code into a program • ‘__debug__’ -> built in variable - the functions surrounded by ‘if __debug__’ will be executed only when ‘__debug__’ is [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the brief about the <a href="http://freeonlineprogrammingtutorials.com">Python Debugging</a> and testing.<br />
<br />
<span id="more-174"></span></p>
<div style="display:block;float:right;padding:5px;">
<script type="text/javascript"><!--
google_ad_client = "pub-9680100702980837";
/* big_sq_red */
google_ad_slot = "4937024846";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p>•	IDLE supports debugging<br />
•	A simple text mode interactive debugger is also available<br />
•	‘assert’ statement is used to introduce debugging code into a program<br />
•	‘__debug__’   -> built in variable<br />
-	the functions surrounded by ‘if  __debug__’ will be executed only when ‘__debug__’ is true<br />
</p>
<h2>Testing of Python</h2>
<p>
•	Python has modules that help a tester in unit testing the code<br />
-	docTest &#8211; Embedded in the source code<br />
-	unittest &#8211; separate module<br />
-	example </p>
]]></content:encoded>
			<wfw:commentRss>http://freeonlineprogrammingtutorials.com/python-debugging/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python Logging Errors</title>
		<link>http://freeonlineprogrammingtutorials.com/python-logging-errors</link>
		<comments>http://freeonlineprogrammingtutorials.com/python-logging-errors#comments</comments>
		<pubDate>Wed, 16 Jun 2010 12:42:07 +0000</pubDate>
		<dc:creator>WebProgrammer</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Python Logging Errors]]></category>

		<guid isPermaLink="false">http://freeonlineprogrammingtutorials.com/?p=171</guid>
		<description><![CDATA[Let take a look of Python Logging Errors, Garbage Collection, and Database API. • Logging Errors - Error stream of the process can be redirected to any file. The stream includes error message and traceback . - Use sys.excepthook to write your own function to handle unhandled exceptions Garbage Collection • Cpython &#8211; uses reference [...]]]></description>
			<content:encoded><![CDATA[<p>Let take a look of Python Logging Errors, Garbage Collection, and Database API.<br />
<br />
<span id="more-171"></span></p>
<div style="display:block;float:right;padding:5px;">
<script type="text/javascript"><!--
google_ad_client = "pub-9680100702980837";
/* big_sq_red */
google_ad_slot = "4937024846";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p>•	Logging Errors<br />
-	Error stream of the process can be redirected to any file. The stream includes error message and traceback .<br />
-	Use sys.excepthook to write your own function to handle unhandled exceptions<br />
</p>
<h2>Garbage Collection</h2>
<p>
•	Cpython &#8211; uses reference count<br />
•	Jython &#8211; relies on the platform (JVM)<br />
</p>
<h2>Database API</h2>
<p>
•	Databases supported by Python<br />
-	Oracle<br />
-	SQL Server<br />
-	DB2<br />
-	MySQL<br />
-	PostgreSQL </p>
]]></content:encoded>
			<wfw:commentRss>http://freeonlineprogrammingtutorials.com/python-logging-errors/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python OO Features</title>
		<link>http://freeonlineprogrammingtutorials.com/python-oo-features</link>
		<comments>http://freeonlineprogrammingtutorials.com/python-oo-features#comments</comments>
		<pubDate>Wed, 16 Jun 2010 12:35:51 +0000</pubDate>
		<dc:creator>WebProgrammer</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Python OO Features]]></category>

		<guid isPermaLink="false">http://freeonlineprogrammingtutorials.com/?p=169</guid>
		<description><![CDATA[Here&#8217;s the Brief description about the Python OO Features and Other useful Features • Encapsulation - By default all class members are public always - To give private scope to a members, use ’__varname’ • Inheritance - Supports multiple inheritance • Overriding attributes • Examples Other useful Features • array : (100,200,300) • Lists : [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the Brief description about the <a href="http://freeonlineprogrammingtutorials.com"> Python </a>OO Features  and Other useful Features<br />
<br />
<span id="more-169"></span></p>
<div style="display:block;float:right;padding:5px;">
<script type="text/javascript"><!--
google_ad_client = "pub-9680100702980837";
/* big_sq_red */
google_ad_slot = "4937024846";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p>•	Encapsulation<br />
-	By default all class members are public always<br />
-	To give private scope to a members, use ’__varname’<br />
•	Inheritance<br />
-	Supports multiple inheritance<br />
•	Overriding attributes<br />
•	Examples<br />
</p>
<h2>Other useful Features</h2>
<p> <br />
•	array :	(100,200,300)<br />
•	Lists : 	[42,”Hello”,3.1]<br />
•	dictionary :	{‘x’:42, ‘y’:3.1}<br />
•	Indexing:<br />
	L=[1,2,3,4]<br />
	L[0]     &#8211;      1, 	L[3]   &#8211;     4<br />
Negative numbers for indexing<br />
	L[-1]    &#8211;     4 (last item)<br />
•	Slicing a sequence:<br />
L[1-2] &#8212; 2,3 </p>
]]></content:encoded>
			<wfw:commentRss>http://freeonlineprogrammingtutorials.com/python-oo-features/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python Implementations</title>
		<link>http://freeonlineprogrammingtutorials.com/python-implementations</link>
		<comments>http://freeonlineprogrammingtutorials.com/python-implementations#comments</comments>
		<pubDate>Wed, 16 Jun 2010 12:30:43 +0000</pubDate>
		<dc:creator>WebProgrammer</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Python Implementations]]></category>

		<guid isPermaLink="false">http://freeonlineprogrammingtutorials.com/?p=166</guid>
		<description><![CDATA[Let us take a look of Python Implementations and Development Environments • Cpython (Classic Python) - coded in C • Jython - needs JVM • Python.NET - implementation for MS.NET platform - still in development phase Python Development Environments • IDLE • Source Navigator &#8211; by RedHat • MacPython &#8211; for Macintosh • ActivePython &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p> Let us take a look of<a href="http://freeonlineprogrammingtutorials.com"> Python</a> Implementations and Development Environments<br />
<br />
<span id="more-166"></span></p>
<div style="display:block;float:right;padding:5px;">
<script type="text/javascript"><!--
google_ad_client = "pub-9680100702980837";
/* big_sq_red */
google_ad_slot = "4937024846";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p>•	Cpython (Classic Python)<br />
-	coded in C<br />
•	Jython<br />
-	needs JVM<br />
•	Python.NET<br />
-	implementation for MS.NET platform<br />
-	still in development phase<br />
</p>
<h2>Python Development Environments</h2>
<p>
•	IDLE<br />
•	Source Navigator &#8211; by RedHat<br />
•	MacPython &#8211; for Macintosh<br />
•	ActivePython &#8211; for Windows<br />
•	Commercial IDE<br />
-	BlackAdder<br />
-	Komodo<br />
-	PythonWorks<br />
-	MS VS.NET </p>
]]></content:encoded>
			<wfw:commentRss>http://freeonlineprogrammingtutorials.com/python-implementations/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

