<?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: Kunal Sirohi</title>
    <description>The latest articles on DEV Community by Kunal Sirohi (@kunal_sirohi_b049a8915083).</description>
    <link>https://dev.to/kunal_sirohi_b049a8915083</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%2F3498932%2Fa0808e38-c14a-49cf-a175-a4b40e79669e.jpeg</url>
      <title>DEV Community: Kunal Sirohi</title>
      <link>https://dev.to/kunal_sirohi_b049a8915083</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kunal_sirohi_b049a8915083"/>
    <language>en</language>
    <item>
      <title>🚀 Getting Started with Python: A Beginner’s Guide</title>
      <dc:creator>Kunal Sirohi</dc:creator>
      <pubDate>Sat, 13 Sep 2025 05:46:54 +0000</pubDate>
      <link>https://dev.to/kunal_sirohi_b049a8915083/getting-started-with-python-a-beginners-guide-2pkf</link>
      <guid>https://dev.to/kunal_sirohi_b049a8915083/getting-started-with-python-a-beginners-guide-2pkf</guid>
      <description>&lt;p&gt;🚀 Getting Started with Python: A Beginner’s Guide&lt;/p&gt;

&lt;p&gt;Python has become one of the most popular programming languages in the world. Whether you’re interested in web development, data science, machine learning, or automation, Python is a great place to start.&lt;/p&gt;

&lt;p&gt;Why Python?&lt;br&gt;
    • ✅ Easy to learn and read&lt;br&gt;
    • ✅ Huge community support&lt;br&gt;
    • ✅ Works across many domains (AI, Web, Data, Games)&lt;/p&gt;

&lt;p&gt;Installing Python&lt;br&gt;
    1.  Go to python.org&lt;br&gt;
    2.  Download the latest version (Python 3.x)&lt;br&gt;
    3.  Install and verify by typing:&lt;br&gt;
python --version&lt;br&gt;
Your First Python Program&lt;/p&gt;

&lt;p&gt;Create a file called hello.py and add this:&lt;br&gt;
print("Hello, World!")&lt;br&gt;
Run it:&lt;br&gt;
python hello.py&lt;br&gt;
output:&lt;br&gt;
Hello, World!&lt;br&gt;
What’s Next?&lt;/p&gt;

&lt;p&gt;Here are a few simple things you can try:&lt;/p&gt;

&lt;h1&gt;
  
  
  Variables
&lt;/h1&gt;

&lt;p&gt;name = "Kunal"&lt;br&gt;
age = 22&lt;br&gt;
print(f"My name is {name} and I am {age} years old.")&lt;/p&gt;

&lt;h1&gt;
  
  
  Loops
&lt;/h1&gt;

&lt;p&gt;for i in range(5):&lt;br&gt;
    print("Python is awesome!")&lt;/p&gt;

&lt;h1&gt;
  
  
  Function
&lt;/h1&gt;

&lt;p&gt;def greet(user):&lt;br&gt;
    return f"Welcome, {user}!"&lt;/p&gt;

&lt;p&gt;print(greet("Reader"))&lt;br&gt;
Final Thoughts&lt;/p&gt;

&lt;p&gt;Python is easy to start with but powerful enough to build AI systems, websites, and data pipelines. If you’re just beginning, try writing small programs every day and share them with others.&lt;/p&gt;

</description>
      <category>programming</category>
      <category>ai</category>
      <category>beginners</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
