<?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>DEV Community: Samiksha Srivastav</title>
    <description>The latest articles on DEV Community by Samiksha Srivastav (@samikshasri).</description>
    <link>https://dev.to/samikshasri</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3912250%2Fbd929b4b-28fa-47fa-8a4c-a1093a1484fc.png</url>
      <title>DEV Community: Samiksha Srivastav</title>
      <link>https://dev.to/samikshasri</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/samikshasri"/>
    <language>en</language>
    <item>
      <title>Getting Started with Python</title>
      <dc:creator>Samiksha Srivastav</dc:creator>
      <pubDate>Mon, 04 May 2026 14:45:53 +0000</pubDate>
      <link>https://dev.to/samikshasri/getting-started-with-python-3cnj</link>
      <guid>https://dev.to/samikshasri/getting-started-with-python-3cnj</guid>
      <description>&lt;p&gt;Today I started learning Python, and I explored some fundamental concepts that helped me understand how Python actually works behind the scenes.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Python?
&lt;/h2&gt;

&lt;p&gt;Python is a &lt;strong&gt;high-level, interpreted programming language.&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Being &lt;strong&gt;high-level&lt;/strong&gt; means it is easy to read and write, as it is closer to human language and abstracts away hardware complexity.&lt;/li&gt;
&lt;li&gt;This makes it very different from low-level languages like &lt;strong&gt;assembly&lt;/strong&gt; or &lt;strong&gt;machine language&lt;/strong&gt;, which directly interact with hardware.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Is Python Really Interpreted?
&lt;/h2&gt;

&lt;p&gt;We often hear that Python is an interpreted language, but there is a bit more to it.&lt;/p&gt;

&lt;p&gt;Python actually works in two main steps:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Compilation to Bytecode&lt;/strong&gt;&lt;br&gt;
 First, Python converts your code into an intermediate format called &lt;strong&gt;bytecode.&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Execution using Python Virtual Machine (PVM)&lt;/strong&gt;&lt;br&gt;
 This bytecode is then executed by the &lt;strong&gt;Python Virtual Machine (PVM.)&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This process is what makes Python both flexible and easy to debug.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is &lt;strong&gt;pycache&lt;/strong&gt;?
&lt;/h2&gt;

&lt;p&gt;While running Python programs, you might notice a folder named &lt;strong&gt;pycache&lt;/strong&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It stores compiled &lt;strong&gt;bytecode files(.pyc)&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;These files help Python run faster when the program is executed again &lt;/li&gt;
&lt;li&gt;This process is usually automatic and hidden from developers
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Python is &lt;strong&gt;easy to read and beginner-friendly&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;It is &lt;strong&gt;interpreted but internally uses bytecode&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Execution happens through the Python Virtual Machine (PVM)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;pycache&lt;/strong&gt; improves performance by storing compiled code&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;Understanding what happens behind the scenes makes learning Python much more interesting. This is just the beginning of my journey, and I'm excited to explore more.&lt;/p&gt;

&lt;p&gt;Follow my journey as I continue learning and building in Python!&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>learninpublic</category>
    </item>
  </channel>
</rss>
