<?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>Python &#8211; shbytes.com</title>
	<atom:link href="https://shbytes.com/tag/python/feed/" rel="self" type="application/rss+xml" />
	<link>https://shbytes.com</link>
	<description>Empowering IT career, one byte at a time</description>
	<lastBuildDate>Fri, 01 Nov 2024 06:14:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.3</generator>
	<item>
		<title>Modules in Python</title>
		<link>https://shbytes.com/modules-in-python/</link>
					<comments>https://shbytes.com/modules-in-python/#respond</comments>
		
		<dc:creator><![CDATA[Payal Academy]]></dc:creator>
		<pubDate>Wed, 09 Oct 2024 00:11:47 +0000</pubDate>
				<category><![CDATA[19.Python Modules]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Python Modules]]></category>
		<guid isPermaLink="false">https://shbytes.com/?p=4041</guid>

					<description><![CDATA[<p>In Python, modules are an essential way to organize and reuse the code. This tutorial will walk us through everything we need to know about Python modules, from basic concepts&#8230;</p>
<p>The post <a rel="nofollow" href="https://shbytes.com/modules-in-python/">Modules in Python</a> appeared first on <a rel="nofollow" href="https://shbytes.com">shbytes.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://shbytes.com/modules-in-python/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Generators in Python (with Examples)</title>
		<link>https://shbytes.com/generators-in-python-with-examples/</link>
					<comments>https://shbytes.com/generators-in-python-with-examples/#comments</comments>
		
		<dc:creator><![CDATA[Payal Academy]]></dc:creator>
		<pubDate>Tue, 08 Oct 2024 14:27:35 +0000</pubDate>
				<category><![CDATA[18.Python Advance Topics]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Python Advance Topics]]></category>
		<guid isPermaLink="false">https://shbytes.com/?p=4025</guid>

					<description><![CDATA[<p>In Python, generators are a simple way of creating iterators. Generators allows us to iterate over a set of values without needing to create a list in memory. Generators are&#8230;</p>
<p>The post <a rel="nofollow" href="https://shbytes.com/generators-in-python-with-examples/">Generators in Python (with Examples)</a> appeared first on <a rel="nofollow" href="https://shbytes.com">shbytes.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://shbytes.com/generators-in-python-with-examples/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Decorators in Python (with Examples)</title>
		<link>https://shbytes.com/decorators-in-python-with-examples/</link>
					<comments>https://shbytes.com/decorators-in-python-with-examples/#respond</comments>
		
		<dc:creator><![CDATA[Payal Academy]]></dc:creator>
		<pubDate>Mon, 07 Oct 2024 00:55:56 +0000</pubDate>
				<category><![CDATA[18.Python Advance Topics]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Python Advance Topics]]></category>
		<guid isPermaLink="false">https://shbytes.com/?p=4016</guid>

					<description><![CDATA[<p>In Python, decorators are a powerful tool that allow us to modify or enhance the behavior of functions or methods without changing their actual code. A decorator is essentially a&#8230;</p>
<p>The post <a rel="nofollow" href="https://shbytes.com/decorators-in-python-with-examples/">Decorators in Python (with Examples)</a> appeared first on <a rel="nofollow" href="https://shbytes.com">shbytes.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://shbytes.com/decorators-in-python-with-examples/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Python Functions as First-Class Objects (with Examples)</title>
		<link>https://shbytes.com/python-functions-as-first-class-objects-with-examples/</link>
					<comments>https://shbytes.com/python-functions-as-first-class-objects-with-examples/#respond</comments>
		
		<dc:creator><![CDATA[Payal Academy]]></dc:creator>
		<pubDate>Sun, 06 Oct 2024 16:32:51 +0000</pubDate>
				<category><![CDATA[18.Python Advance Topics]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Python Advance Topics]]></category>
		<guid isPermaLink="false">https://shbytes.com/?p=4012</guid>

					<description><![CDATA[<p>In Python, functions are considered first-class objects (or first-class citizens), meaning they can be treated like any other object, such as integers, strings, lists, etc. This property allows Python developers&#8230;</p>
<p>The post <a rel="nofollow" href="https://shbytes.com/python-functions-as-first-class-objects-with-examples/">Python Functions as First-Class Objects (with Examples)</a> appeared first on <a rel="nofollow" href="https://shbytes.com">shbytes.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://shbytes.com/python-functions-as-first-class-objects-with-examples/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Iterators in Python (with Examples)</title>
		<link>https://shbytes.com/iterators-in-python-with-examples/</link>
					<comments>https://shbytes.com/iterators-in-python-with-examples/#respond</comments>
		
		<dc:creator><![CDATA[Payal Academy]]></dc:creator>
		<pubDate>Sun, 06 Oct 2024 01:13:01 +0000</pubDate>
				<category><![CDATA[18.Python Advance Topics]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Python Advance Topics]]></category>
		<guid isPermaLink="false">https://shbytes.com/?p=3992</guid>

					<description><![CDATA[<p>Iterators in Python are a powerful feature that allows us to traverse through all elements of a collection (like lists, tuples, or dictionaries) without exposing the collection’s underlying structure. Understanding&#8230;</p>
<p>The post <a rel="nofollow" href="https://shbytes.com/iterators-in-python-with-examples/">Iterators in Python (with Examples)</a> appeared first on <a rel="nofollow" href="https://shbytes.com">shbytes.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://shbytes.com/iterators-in-python-with-examples/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Method Overriding in Python (with Examples)</title>
		<link>https://shbytes.com/method-overriding-in-python-with-examples/</link>
					<comments>https://shbytes.com/method-overriding-in-python-with-examples/#respond</comments>
		
		<dc:creator><![CDATA[Payal Academy]]></dc:creator>
		<pubDate>Sat, 05 Oct 2024 17:44:20 +0000</pubDate>
				<category><![CDATA[17.Python OOPs]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Python OOPs]]></category>
		<guid isPermaLink="false">https://shbytes.com/?p=3987</guid>

					<description><![CDATA[<p>Method overriding occurs when a subclass provides a specific implementation of a method that is already defined in its super-class. The method in the subclass overrides the method in the&#8230;</p>
<p>The post <a rel="nofollow" href="https://shbytes.com/method-overriding-in-python-with-examples/">Method Overriding in Python (with Examples)</a> appeared first on <a rel="nofollow" href="https://shbytes.com">shbytes.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://shbytes.com/method-overriding-in-python-with-examples/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Method Overloading in Python (with Examples)</title>
		<link>https://shbytes.com/method-overloading-in-python-with-examples/</link>
					<comments>https://shbytes.com/method-overloading-in-python-with-examples/#comments</comments>
		
		<dc:creator><![CDATA[Payal Academy]]></dc:creator>
		<pubDate>Sat, 05 Oct 2024 01:58:07 +0000</pubDate>
				<category><![CDATA[17.Python OOPs]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Python OOPs]]></category>
		<guid isPermaLink="false">https://shbytes.com/?p=3974</guid>

					<description><![CDATA[<p>Method overloading refers to defining multiple methods with the same name but different signatures (parameters) within the same class. In Python, method overloading is not supported in the traditional sense&#8230;</p>
<p>The post <a rel="nofollow" href="https://shbytes.com/method-overloading-in-python-with-examples/">Method Overloading in Python (with Examples)</a> appeared first on <a rel="nofollow" href="https://shbytes.com">shbytes.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://shbytes.com/method-overloading-in-python-with-examples/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Polymorphism in Python (with Examples)</title>
		<link>https://shbytes.com/polymorphism-in-python-with-examples/</link>
					<comments>https://shbytes.com/polymorphism-in-python-with-examples/#respond</comments>
		
		<dc:creator><![CDATA[Payal Academy]]></dc:creator>
		<pubDate>Thu, 03 Oct 2024 15:44:12 +0000</pubDate>
				<category><![CDATA[17.Python OOPs]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Python OOPs]]></category>
		<guid isPermaLink="false">https://shbytes.com/?p=3953</guid>

					<description><![CDATA[<p>Polymorphism is one of the key principles of object-oriented programming (OOP) in Python. Polymorphism in Python means &#8220;many forms&#8221;. It refers to the ability to present the same interface for&#8230;</p>
<p>The post <a rel="nofollow" href="https://shbytes.com/polymorphism-in-python-with-examples/">Polymorphism in Python (with Examples)</a> appeared first on <a rel="nofollow" href="https://shbytes.com">shbytes.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://shbytes.com/polymorphism-in-python-with-examples/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Abstraction in Python (with Examples)</title>
		<link>https://shbytes.com/abstraction-in-python-with-examples/</link>
					<comments>https://shbytes.com/abstraction-in-python-with-examples/#respond</comments>
		
		<dc:creator><![CDATA[Payal Academy]]></dc:creator>
		<pubDate>Thu, 03 Oct 2024 03:31:39 +0000</pubDate>
				<category><![CDATA[17.Python OOPs]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Python OOPs]]></category>
		<guid isPermaLink="false">https://shbytes.com/?p=3950</guid>

					<description><![CDATA[<p>Abstraction is one of the fundamental principles of object-oriented programming (OOP). It helps in hiding the complexity of a system by exposing only the essential fields (or details). It allows&#8230;</p>
<p>The post <a rel="nofollow" href="https://shbytes.com/abstraction-in-python-with-examples/">Abstraction in Python (with Examples)</a> appeared first on <a rel="nofollow" href="https://shbytes.com">shbytes.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://shbytes.com/abstraction-in-python-with-examples/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Object Oriented Programming &#8211; Inheritance in Python</title>
		<link>https://shbytes.com/object-oriented-programming-inheritance-in-python/</link>
					<comments>https://shbytes.com/object-oriented-programming-inheritance-in-python/#respond</comments>
		
		<dc:creator><![CDATA[Payal Academy]]></dc:creator>
		<pubDate>Tue, 01 Oct 2024 15:16:23 +0000</pubDate>
				<category><![CDATA[17.Python OOPs]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Python OOPs]]></category>
		<guid isPermaLink="false">https://shbytes.com/?p=3908</guid>

					<description><![CDATA[<p>Inheritance is the key principle of Object Oriented Programming. Inheritance is a feature that enables us to establish a hierarchy of classes, allowing them to share common properties and methods&#8230;</p>
<p>The post <a rel="nofollow" href="https://shbytes.com/object-oriented-programming-inheritance-in-python/">Object Oriented Programming &#8211; Inheritance in Python</a> appeared first on <a rel="nofollow" href="https://shbytes.com">shbytes.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://shbytes.com/object-oriented-programming-inheritance-in-python/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
