<?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>Code Theory</title>
	<atom:link href="http://codetheory.in/feed/" rel="self" type="application/rss+xml" />
	<link>https://codetheory.in</link>
	<description>Web and Mobile Development articles</description>
	<lastBuildDate>Sun, 19 Oct 2025 03:15:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>How to find a pattern with re.search in a Python string</title>
		<link>https://codetheory.in/how-to-find-a-pattern-with-re-search-in-a-python-string/</link>
		
		<dc:creator><![CDATA[Rishabh]]></dc:creator>
		<pubDate>Sun, 19 Oct 2025 03:15:38 +0000</pubDate>
				<category><![CDATA[Tools & Tips]]></category>
		<guid isPermaLink="false">https://kgs.hfl.temporary.site/website_d3afa00c/?p=3401---22146efe-d535-4d09-b83e-9730daa0f586</guid>

					<description><![CDATA[Regular expressions are very useful to the Python geek, especially when they have to deal with a lot of data which comes in the form of text. Being very rich in features, the Python computer programming language comes with a builtin module which offers the functionalities and utilities to construct regular expressions based on the &#8230; <a href="https://codetheory.in/how-to-find-a-pattern-with-re-search-in-a-python-string/" class="more-link">Continue reading<span class="screen-reader-text"> "How to find a pattern with re.search in a Python string"</span></a>]]></description>
		
		
		
			</item>
		<item>
		<title>How to pass **kwargs inside a Python function</title>
		<link>https://codetheory.in/how-to-pass-kwargs-inside-a-python-function/</link>
		
		<dc:creator><![CDATA[Rishabh]]></dc:creator>
		<pubDate>Fri, 17 Oct 2025 20:20:33 +0000</pubDate>
				<category><![CDATA[Tools & Tips]]></category>
		<guid isPermaLink="false">https://kgs.hfl.temporary.site/website_d3afa00c/?p=3325---99342454-68f0-4ae8-90b2-1e3efa390969</guid>

					<description><![CDATA[In one of the previous tutorials about the Python computer programming language, we learned how to make use of the *args syntax to pass arguments inside a function. Through this article, you are going to learn how to make use of the **kwargs Python syntax to automatically pass keyword based arguments inside a function. Before &#8230; <a href="https://codetheory.in/how-to-pass-kwargs-inside-a-python-function/" class="more-link">Continue reading<span class="screen-reader-text"> "How to pass **kwargs inside a Python function"</span></a>]]></description>
		
		
		
			</item>
		<item>
		<title>How to override a method in a Python class</title>
		<link>https://codetheory.in/how-to-override-a-method-in-a-python-class/</link>
		
		<dc:creator><![CDATA[Rishabh]]></dc:creator>
		<pubDate>Fri, 17 Oct 2025 14:20:46 +0000</pubDate>
				<category><![CDATA[Tools & Tips]]></category>
		<guid isPermaLink="false">https://kgs.hfl.temporary.site/website_d3afa00c/?p=3356---b2ee1b25-0ebb-4fa7-b764-bc4bca4a2cd8</guid>

					<description><![CDATA[The class utility offered by the Python computer programming language, is a very important tool to the Python coder as it offers a way to develop custom extension classes which inherit attributes from a base one. By using the class utility offered by the Python computer programming language, the developer can easily get the most &#8230; <a href="https://codetheory.in/how-to-override-a-method-in-a-python-class/" class="more-link">Continue reading<span class="screen-reader-text"> "How to override a method in a Python class"</span></a>]]></description>
		
		
		
			</item>
		<item>
		<title>How to find your Python version the geek way</title>
		<link>https://codetheory.in/how-to-find-your-python-version-the-geek-way/</link>
		
		<dc:creator><![CDATA[Rishabh]]></dc:creator>
		<pubDate>Wed, 15 Oct 2025 21:20:32 +0000</pubDate>
				<category><![CDATA[Tools & Tips]]></category>
		<guid isPermaLink="false">https://kgs.hfl.temporary.site/website_d3afa00c/?p=3346---a31b2407-21c5-4f20-8e02-577bca419b68</guid>

					<description><![CDATA[As a computer geek, I like to experiment with different command line utilities with the main purpose of finding new ways to automate daily tasks in my own operating system. Python is one of my favorite computer tool so far, as not only it helps me to write my custom utilities, but is also easy &#8230; <a href="https://codetheory.in/how-to-find-your-python-version-the-geek-way/" class="more-link">Continue reading<span class="screen-reader-text"> "How to find your Python version the geek way"</span></a>]]></description>
		
		
		
			</item>
		<item>
		<title>How to execute commands of the unix based operating system in Python</title>
		<link>https://codetheory.in/how-to-execute-commands-of-the-unix-based-operating-system-in-python/</link>
		
		<dc:creator><![CDATA[Rishabh]]></dc:creator>
		<pubDate>Wed, 15 Oct 2025 01:35:34 +0000</pubDate>
				<category><![CDATA[Tools & Tips]]></category>
		<guid isPermaLink="false">https://kgs.hfl.temporary.site/website_d3afa00c/?p=3327---bb819df8-4862-40c4-a1fa-6e3e65bec70a</guid>

					<description><![CDATA[Every operating system I am aware of comes with a command line utility through which the wise computer geek can execute commands and interact with the functionalities provided by it. Based on my personal experience with computers so far, Unix based machines offer a terminal utility to help the user run specific builtin commands which &#8230; <a href="https://codetheory.in/how-to-execute-commands-of-the-unix-based-operating-system-in-python/" class="more-link">Continue reading<span class="screen-reader-text"> "How to execute commands of the unix based operating system in Python"</span></a>]]></description>
		
		
		
			</item>
		<item>
		<title>How to pass *args in a Python function</title>
		<link>https://codetheory.in/how-to-pass-args-in-a-python-function/</link>
		
		<dc:creator><![CDATA[Rishabh]]></dc:creator>
		<pubDate>Mon, 13 Oct 2025 20:40:33 +0000</pubDate>
				<category><![CDATA[Tools & Tips]]></category>
		<guid isPermaLink="false">https://kgs.hfl.temporary.site/website_d3afa00c/?p=3316---c632568d-84f7-40d8-ad85-e2374b1d706b</guid>

					<description><![CDATA[Functions are very useful in the Python computer programming language as they help the coder to group utilities together with the main purpose of accomplishing a specific goal. Not only this, but the function can also help the Python coder to stop repeating themselves in their Python based projects. A real world function, part of &#8230; <a href="https://codetheory.in/how-to-pass-args-in-a-python-function/" class="more-link">Continue reading<span class="screen-reader-text"> "How to pass *args in a Python function"</span></a>]]></description>
		
		
		
			</item>
		<item>
		<title>How to print the elements of a list object in Python</title>
		<link>https://codetheory.in/how-to-print-the-elements-of-a-list-object-in-python/</link>
		
		<dc:creator><![CDATA[Rishabh]]></dc:creator>
		<pubDate>Sun, 12 Oct 2025 22:45:35 +0000</pubDate>
				<category><![CDATA[Tools & Tips]]></category>
		<guid isPermaLink="false">https://kgs.hfl.temporary.site/website_d3afa00c/?p=3306---d271868f-1f99-4539-aa83-4972ff426007</guid>

					<description><![CDATA[The Python list object is very useful to the coder, especially when they have to store data and keep track of it in their projects. Not only can the coder make use of the list object to store data in it, but they can also make use of the data by using different utilities which &#8230; <a href="https://codetheory.in/how-to-print-the-elements-of-a-list-object-in-python/" class="more-link">Continue reading<span class="screen-reader-text"> "How to print the elements of a list object in Python"</span></a>]]></description>
		
		
		
			</item>
		<item>
		<title>How to check if a Python string starts with a specific character</title>
		<link>https://codetheory.in/how-to-check-if-a-python-string-starts-with-a-specific-character/</link>
		
		<dc:creator><![CDATA[Rishabh]]></dc:creator>
		<pubDate>Sat, 11 Oct 2025 21:45:40 +0000</pubDate>
				<category><![CDATA[Tools & Tips]]></category>
		<guid isPermaLink="false">https://kgs.hfl.temporary.site/website_d3afa00c/?p=3301---eb6d73ab-cc1a-4e07-9d2f-169a7072b1a2</guid>

					<description><![CDATA[Been writing for some time a side project in the Python computer programming language, there was a case when I had to check if a string object started with a specific character or not. Then based on the status of the condition, I had to make sure to run different branches of the project&#8217;s code. &#8230; <a href="https://codetheory.in/how-to-check-if-a-python-string-starts-with-a-specific-character/" class="more-link">Continue reading<span class="screen-reader-text"> "How to check if a Python string starts with a specific character"</span></a>]]></description>
		
		
		
			</item>
		<item>
		<title>How to get the current working directory with Python</title>
		<link>https://codetheory.in/how-to-get-the-current-working-directory-with-python/</link>
		
		<dc:creator><![CDATA[Rishabh]]></dc:creator>
		<pubDate>Fri, 10 Oct 2025 22:55:33 +0000</pubDate>
				<category><![CDATA[Tools & Tips]]></category>
		<guid isPermaLink="false">https://kgs.hfl.temporary.site/website_d3afa00c/?p=3294---299b1a7d-5e4e-4993-9bb2-bf8f11f0674e</guid>

					<description><![CDATA[One can easily find out the current working directory by making use of the Python computer programming language, since it comes with all the utilities required to interact with the functionalities of the operating system. Before going any further with this tutorial, make sure to launch a new Python interactive console on your own operating &#8230; <a href="https://codetheory.in/how-to-get-the-current-working-directory-with-python/" class="more-link">Continue reading<span class="screen-reader-text"> "How to get the current working directory with Python"</span></a>]]></description>
		
		
		
			</item>
		<item>
		<title>How to create a dictionary in Python and make use of it</title>
		<link>https://codetheory.in/how-to-create-a-dictionary-in-python-and-make-use-of-it/</link>
		
		<dc:creator><![CDATA[Rishabh]]></dc:creator>
		<pubDate>Fri, 10 Oct 2025 10:55:33 +0000</pubDate>
				<category><![CDATA[Tools & Tips]]></category>
		<guid isPermaLink="false">https://kgs.hfl.temporary.site/website_d3afa00c/?p=3287---96fb670e-69ac-41cb-9b55-8903efa3f973</guid>

					<description><![CDATA[There are many builtin objects offered by the Python computer programming language which the Python coder can make use of while writing their Python based applications. Through this simple and short tutorial, you are going to learn how to create a dictionary object and how to make use of it in a practical case, in &#8230; <a href="https://codetheory.in/how-to-create-a-dictionary-in-python-and-make-use-of-it/" class="more-link">Continue reading<span class="screen-reader-text"> "How to create a dictionary in Python and make use of it"</span></a>]]></description>
		
		
		
			</item>
	</channel>
</rss>
