<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Logic Decode</title>
    <link>https://logicdecode.in</link>
    <description>Practical, example-first tech tutorials, news, and trends.</description>
    <language>en-us</language>
    <lastBuildDate>Mon, 15 Jun 2026 21:19:35 GMT</lastBuildDate>
    <atom:link href="https://logicdecode.in/rss.xml" rel="self" type="application/rss+xml" />

    <item>
      <title>Python Next Steps: Comprehensions and Beyond</title>
      <link>https://logicdecode.in/blog/python-next-steps</link>
      <description>Finish the Python basics with list and dict comprehensions, then choose your next path in web, data, or automation, plus the habits that keep you improving.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Mon, 15 Jun 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-next-steps</guid>
    </item>

    <item>
      <title>Python Error and Exception Handling Explained</title>
      <link>https://logicdecode.in/blog/python-error-handling</link>
      <description>Stop your Python programs from crashing — understand exceptions, use try/except/else/finally, raise your own, and fix common beginner errors.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Fri, 12 Jun 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-error-handling</guid>
    </item>

    <item>
      <title>File Handling in Python: Read and Write Files</title>
      <link>https://logicdecode.in/blog/python-file-handling</link>
      <description>Open, read, and write files in Python — file modes, the with statement, and safe patterns for reading and writing text files.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Wed, 10 Jun 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-file-handling</guid>
    </item>

    <item>
      <title>Python Inheritance and Dunder Methods Explained</title>
      <link>https://logicdecode.in/blog/python-inheritance</link>
      <description>Reuse and extend classes with inheritance and super(), then customize objects with dunder methods like __str__ and __repr__.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Mon, 08 Jun 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-inheritance</guid>
    </item>

    <item>
      <title>Python OOP: Classes and Objects for Beginners</title>
      <link>https://logicdecode.in/blog/python-oop-classes</link>
      <description>Start object-oriented programming in Python — why OOP, defining a class, __init__, attributes and methods, and creating objects.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Fri, 05 Jun 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-oop-classes</guid>
    </item>

    <item>
      <title>Python Modules, pip and Virtual Environments</title>
      <link>https://logicdecode.in/blog/python-modules-and-pip</link>
      <description>Import and write modules, install packages with pip, and isolate projects with virtual environments — the foundation of real Python projects.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Wed, 03 Jun 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-modules-and-pip</guid>
    </item>

    <item>
      <title>Python Functions and Logic Building Explained</title>
      <link>https://logicdecode.in/blog/python-functions</link>
      <description>Write reusable Python functions — def, parameters, return values, default and keyword arguments, and scope — and break problems into pieces.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Mon, 01 Jun 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-functions</guid>
    </item>

    <item>
      <title>Build the FLAMES Game in Python (Beginner Project)</title>
      <link>https://logicdecode.in/blog/python-flames-game</link>
      <description>Put loops, strings, and conditionals together to build the classic FLAMES name game in Python, step by step, from scratch.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Fri, 29 May 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-flames-game</guid>
    </item>

    <item>
      <title>Python for and while Loops for Beginners</title>
      <link>https://logicdecode.in/blog/python-loops</link>
      <description>Repeat work with Python loops — for with range, iterating over sequences, while loops, and the break, continue, and pass keywords.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Wed, 27 May 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-loops</guid>
    </item>

    <item>
      <title>Python if, elif and else Statements Explained</title>
      <link>https://logicdecode.in/blog/python-if-else</link>
      <description>Make decisions in Python with if/elif/else, understand indentation as scope, nest conditions, and meet the modern match/case statement.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Mon, 25 May 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-if-else</guid>
    </item>

    <item>
      <title>Comparison and Logical Operators in Python</title>
      <link>https://logicdecode.in/blog/python-operators</link>
      <description>Build conditions with Python&apos;s comparison and logical operators — ==, !=, &lt;, &gt;, and/or/not — plus short-circuiting and real examples.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Fri, 22 May 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-operators</guid>
    </item>

    <item>
      <title>Python Dictionaries: Key-Value Data Made Easy</title>
      <link>https://logicdecode.in/blog/python-dictionaries</link>
      <description>Use Python dictionaries to store and look up key-value data — creating, accessing, updating, nesting, and iterating over them.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Wed, 20 May 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-dictionaries</guid>
    </item>

    <item>
      <title>Python Lists, Tuples and Sets: A Beginner&apos;s Guide</title>
      <link>https://logicdecode.in/blog/python-lists-tuples-sets</link>
      <description>Store collections in Python — mutable lists, immutable tuples, and unique-value sets — with indexing, methods, and a comprehension teaser.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Mon, 18 May 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-lists-tuples-sets</guid>
    </item>

    <item>
      <title>Python Strings and f-strings, Explained</title>
      <link>https://logicdecode.in/blog/python-strings</link>
      <description>Create, slice, and format text in Python — quotes, indexing, the string methods you&apos;ll actually use, and clean f-string formatting.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Fri, 15 May 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-strings</guid>
    </item>

    <item>
      <title>Python Numbers and Data Types for Beginners</title>
      <link>https://logicdecode.in/blog/python-numbers-and-types</link>
      <description>Integers, floats, booleans, and arithmetic in Python — what a data type is, when to use each, and how type() tells them apart.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Wed, 13 May 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-numbers-and-types</guid>
    </item>

    <item>
      <title>Python Variables, print() and input() Explained</title>
      <link>https://logicdecode.in/blog/python-variables-and-input</link>
      <description>Write your first real Python program: print output, store data in variables, read user input, and convert between types — with runnable examples.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Mon, 11 May 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/python-variables-and-input</guid>
    </item>

    <item>
      <title>Install Python on Windows, macOS and Linux</title>
      <link>https://logicdecode.in/blog/install-python</link>
      <description>Step-by-step Python 3 setup for Windows, macOS, and Linux — check your version, add Python to PATH, get pip, and pick an editor.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Fri, 08 May 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/install-python</guid>
    </item>

    <item>
      <title>Why Learn Python in 2026 (and What You Can Build)</title>
      <link>https://logicdecode.in/blog/why-learn-python</link>
      <description>What programming really is, why Python is the best first language, and the apps, games, and AI you can build with it once you start.</description>
      <dc:creator>Rhythm Bhiwani</dc:creator>
      <category>Python</category>
      <pubDate>Wed, 06 May 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://logicdecode.in/blog/why-learn-python</guid>
    </item>
  </channel>
</rss>