<?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: Khyati Sahu</title>
    <description>The latest articles on DEV Community by Khyati Sahu (@misspresidentcodes).</description>
    <link>https://dev.to/misspresidentcodes</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%2F3246412%2Fef95af1b-c9a4-43e5-a48b-fd87ca4baa45.jpeg</url>
      <title>DEV Community: Khyati Sahu</title>
      <link>https://dev.to/misspresidentcodes</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/misspresidentcodes"/>
    <language>en</language>
    <item>
      <title>🐍 My Python Journey: Week 3 – The Realm of Operators</title>
      <dc:creator>Khyati Sahu</dc:creator>
      <pubDate>Tue, 08 Jul 2025 17:58:16 +0000</pubDate>
      <link>https://dev.to/misspresidentcodes/my-python-journey-week-3-the-realm-of-operators-i2</link>
      <guid>https://dev.to/misspresidentcodes/my-python-journey-week-3-the-realm-of-operators-i2</guid>
      <description>&lt;p&gt;&lt;strong&gt;Hello, fellow coders and dreamers!&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
As the third week of my Python summer journey unfolded, I found myself entering a realm filled with signs and symbols — tiny characters that hold tremendous power. This week was all about discovering &lt;strong&gt;Operators in Python&lt;/strong&gt; — and oh, what a journey it has been! ✨&lt;/p&gt;

&lt;h2&gt;
  
  
  🧠 What I Learned This Week
&lt;/h2&gt;

&lt;p&gt;In this third week, I explored and understood the various types of operators Python offers. From shaping logic to building expressions, these tools became my new companions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🔢 &lt;strong&gt;Arithmetic Operators&lt;/strong&gt; – the basics of addition, subtraction, multiplication, and more.
&lt;/li&gt;
&lt;li&gt;⚡ &lt;strong&gt;Assignment Operators&lt;/strong&gt; – storing values with style.
&lt;/li&gt;
&lt;li&gt;🧠 &lt;strong&gt;Logical Operators&lt;/strong&gt; – where AND, OR, and NOT decide the truth of the world.
&lt;/li&gt;
&lt;li&gt;💾 &lt;strong&gt;Bitwise Operators&lt;/strong&gt; – unlocking low-level magic with bits and bytes.
&lt;/li&gt;
&lt;li&gt;🧬 &lt;strong&gt;Identity Operators&lt;/strong&gt; – to check whether two objects are, in fact, the same.
&lt;/li&gt;
&lt;li&gt;🧭 &lt;strong&gt;Membership Operators&lt;/strong&gt; – exploring the “in” and “not in” powers.
&lt;/li&gt;
&lt;li&gt;📚 &lt;strong&gt;Operator Precedence&lt;/strong&gt; – because even operators have a hierarchy!&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🎯 How I Practiced
&lt;/h2&gt;

&lt;p&gt;To absorb the theory into muscle memory, I:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Completed an &lt;strong&gt;assignment&lt;/strong&gt; focused on operator concepts.
&lt;/li&gt;
&lt;li&gt;Solved &lt;strong&gt;50+ questions&lt;/strong&gt; dedicated to applying these operators in different scenarios.
&lt;/li&gt;
&lt;li&gt;Participated in &lt;strong&gt;quizzes and mini-tests&lt;/strong&gt; to assess what I had learned so far.
Every question helped sharpen my logic, and every mistake became a stepping stone.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🌟 Highlights / Aha! Moments
&lt;/h2&gt;

&lt;p&gt;What amazed me most was how &lt;strong&gt;operator precedence&lt;/strong&gt; controls the flow of logic — like an invisible conductor in a symphony. Understanding how Python decides which operation to perform first helped me write cleaner, bug-free code.&lt;br&gt;
Also, discovering that &lt;code&gt;is&lt;/code&gt; and &lt;code&gt;==&lt;/code&gt; aren't the same felt like uncovering a secret door in a familiar hallway.&lt;/p&gt;

&lt;h2&gt;
  
  
  ⚠️ Challenges I Faced
&lt;/h2&gt;

&lt;p&gt;Bitwise operators initially felt like deciphering an alien language.&lt;br&gt;&lt;br&gt;
But slowly, with practice and patience, I started to see the pattern in the bits — and it began to make sense. 🙃&lt;/p&gt;

&lt;h2&gt;
  
  
  🔮 What’s Next (Week 4 Goals)
&lt;/h2&gt;

&lt;p&gt;In the coming week, I plan to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Practice &lt;strong&gt;more coding questions&lt;/strong&gt; to strengthen my concepts.
&lt;/li&gt;
&lt;li&gt;Dive deeper into &lt;strong&gt;control flow and conditional statements&lt;/strong&gt;.
&lt;/li&gt;
&lt;li&gt;Attempt a small &lt;strong&gt;mini-project or script&lt;/strong&gt; using everything I’ve learned so far.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🌱 Personal Reflection
&lt;/h2&gt;

&lt;p&gt;This week has shown me that even the tiniest symbols (like &lt;code&gt;&amp;amp;&lt;/code&gt;, &lt;code&gt;|&lt;/code&gt;, or &lt;code&gt;^&lt;/code&gt;) can build powerful logic.&lt;br&gt;&lt;br&gt;
It reminded me how &lt;strong&gt;small steps in learning lead to massive shifts in confidence&lt;/strong&gt;. Every line of code I write makes me feel more fluent in the language of machines — and more in tune with my own rhythm as a learner.&lt;br&gt;
Here’s to another week of coding, curiosity, and quiet courage. 🌿&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Thanks for reading!&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
If you’re learning Python too, I’d love to hear what you’re discovering. Let’s grow together — one week, one lesson, one breakthrough at a time. 💻💫&lt;/p&gt;

</description>
      <category>programming</category>
      <category>python</category>
      <category>beginners</category>
      <category>coding</category>
    </item>
    <item>
      <title>🌱 My Python Summer — Week 2: Operators, Practice &amp; Tiny Triumphs</title>
      <dc:creator>Khyati Sahu</dc:creator>
      <pubDate>Sun, 29 Jun 2025 13:25:17 +0000</pubDate>
      <link>https://dev.to/misspresidentcodes/my-python-summer-week-2-operators-practice-tiny-triumphs-64l</link>
      <guid>https://dev.to/misspresidentcodes/my-python-summer-week-2-operators-practice-tiny-triumphs-64l</guid>
      <description>&lt;h2&gt;
  
  
  🌸 Week 2 of My Python Summer — Diving Deeper Into the Magic of Code
&lt;/h2&gt;

&lt;p&gt;After a gentle yet curious start in Week 1, I stepped into Week 2 of my Python journey with a heart full of questions and fingers ready to explore. And what a week it has been! 🚀🐍&lt;/p&gt;

&lt;h3&gt;
  
  
  🧠 Learning That Felt Like Unlocking Doors
&lt;/h3&gt;

&lt;p&gt;This week, I dove deeper into &lt;strong&gt;data types&lt;/strong&gt; and &lt;strong&gt;operators&lt;/strong&gt; — and suddenly, the language began to feel like a friend I was getting to know. Understanding how Python handles different data types like integers, floats, strings, and booleans helped me build a stronger foundation.&lt;/p&gt;

&lt;p&gt;I also explored:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🧮 Arithmetic, comparison, and logical operators
&lt;/li&gt;
&lt;li&gt;➕ Compound assignment operators
Each one felt like a new tool in my creative coding toolbox 🧰✨&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8v4u8ib57km0tbq260ri.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8v4u8ib57km0tbq260ri.jpeg" alt="Image description" width="328" height="180"&gt;&lt;/a&gt;### 🌟 Why Python? I Discovered the “Why”&lt;br&gt;
While learning the &lt;em&gt;what&lt;/em&gt; and the &lt;em&gt;how&lt;/em&gt;, I also paused to understand the &lt;em&gt;why&lt;/em&gt;.&lt;br&gt;&lt;br&gt;
And that’s when I truly appreciated &lt;strong&gt;Python's simplicity and power&lt;/strong&gt;.  &lt;/p&gt;

&lt;p&gt;Here’s what stood out:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;📖 Readability and elegance
&lt;/li&gt;
&lt;li&gt;🧵 A rich standard library
&lt;/li&gt;
&lt;li&gt;🌍 Versatility across fields — from data science to web development
Python isn’t just a language — it’s a gateway to endless possibilities.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  📝 Quizzes, Tests &amp;amp; The Joy of Measuring My Growth
&lt;/h3&gt;

&lt;p&gt;I challenged myself with quizzes and small tests to reflect on how much I really understood — and I was surprised by how much I had retained!&lt;br&gt;&lt;br&gt;
These small self-checks gave me both clarity and confidence.&lt;/p&gt;

&lt;h3&gt;
  
  
  🧩 Practice Makes Power: 30+ Problems, 15 Assignments!
&lt;/h3&gt;

&lt;p&gt;This week, I stayed consistent and:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;✅ Solved &lt;strong&gt;30+ coding problems&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;✅ Completed &lt;strong&gt;15 assignment-style questions&lt;/strong&gt;
Each one sharpened my logic and made me fall a little more in love with problem-solving.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🧙‍♀️ Python’s Inbuilt Magic ✨
&lt;/h3&gt;

&lt;p&gt;Another gem this week was discovering Python’s &lt;strong&gt;inbuilt functions&lt;/strong&gt; — like &lt;code&gt;len()&lt;/code&gt;, &lt;code&gt;type()&lt;/code&gt;, &lt;code&gt;input()&lt;/code&gt;, &lt;code&gt;range()&lt;/code&gt;, and many more.&lt;br&gt;&lt;br&gt;
They’re like little spells that make your code &lt;strong&gt;compact, powerful, and clean&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  🌱 What’s Next?
&lt;/h3&gt;

&lt;p&gt;Next week, I’m excited to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Dive deeper into &lt;strong&gt;loops&lt;/strong&gt; and advanced &lt;strong&gt;operator usage&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Practice hands-on questions&lt;/li&gt;
&lt;li&gt;Explore &lt;strong&gt;mini assignments&lt;/strong&gt; to apply what I’ve learned
I can already feel my mind starting to think in logic blocks and loops. Python is becoming more intuitive with every passing day.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  💌 A Note to Future Me (and Anyone Reading)
&lt;/h3&gt;

&lt;p&gt;This journey isn’t about speed — it’s about &lt;strong&gt;depth, joy, and staying curious&lt;/strong&gt;.&lt;br&gt;&lt;br&gt;
Each line of code I write is not just syntax — it’s a small affirmation that I'm learning, growing, and becoming the programmer I dream of being.&lt;br&gt;
 &lt;strong&gt;“Keep showing up. Even when the bug bites back.”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Here’s to more bugs, more breakthroughs, and more beautiful logic.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Python — I think we’re just getting started 💚🐍&lt;/p&gt;

</description>
      <category>programming</category>
      <category>python</category>
      <category>beginners</category>
      <category>productivity</category>
    </item>
    <item>
      <title>🌱 My Python Summer — Week 2: Operators, Practice &amp; Tiny Triumphs</title>
      <dc:creator>Khyati Sahu</dc:creator>
      <pubDate>Sun, 29 Jun 2025 13:19:43 +0000</pubDate>
      <link>https://dev.to/misspresidentcodes/my-python-summer-week-2-operators-practice-tiny-triumphs-2mkg</link>
      <guid>https://dev.to/misspresidentcodes/my-python-summer-week-2-operators-practice-tiny-triumphs-2mkg</guid>
      <description>&lt;h2&gt;
  
  
  🌸 Week 2 of My Python Summer — Diving Deeper Into the Magic of Code
&lt;/h2&gt;

&lt;p&gt;After a gentle yet curious start in Week 1, I stepped into Week 2 of my Python journey with a heart full of questions and fingers ready to explore. And what a week it has been! 🚀🐍&lt;/p&gt;

&lt;h3&gt;
  
  
  🧠 Learning That Felt Like Unlocking Doors
&lt;/h3&gt;

&lt;p&gt;This week, I dove deeper into &lt;strong&gt;data types&lt;/strong&gt; and &lt;strong&gt;operators&lt;/strong&gt; — and suddenly, the language began to feel like a friend I was getting to know. Understanding how Python handles different data types like integers, floats, strings, and booleans helped me build a stronger foundation.&lt;/p&gt;

&lt;p&gt;I also explored:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🧮 Arithmetic, comparison, and logical operators
&lt;/li&gt;
&lt;li&gt;➕ Compound assignment operators
Each one felt like a new tool in my creative coding toolbox 🧰✨&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8v4u8ib57km0tbq260ri.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8v4u8ib57km0tbq260ri.jpeg" alt="Image description" width="328" height="180"&gt;&lt;/a&gt;### 🌟 Why Python? I Discovered the “Why”&lt;br&gt;
While learning the &lt;em&gt;what&lt;/em&gt; and the &lt;em&gt;how&lt;/em&gt;, I also paused to understand the &lt;em&gt;why&lt;/em&gt;.&lt;br&gt;&lt;br&gt;
And that’s when I truly appreciated &lt;strong&gt;Python's simplicity and power&lt;/strong&gt;.  &lt;/p&gt;

&lt;p&gt;Here’s what stood out:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;📖 Readability and elegance
&lt;/li&gt;
&lt;li&gt;🧵 A rich standard library
&lt;/li&gt;
&lt;li&gt;🌍 Versatility across fields — from data science to web development
Python isn’t just a language — it’s a gateway to endless possibilities.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  📝 Quizzes, Tests &amp;amp; The Joy of Measuring My Growth
&lt;/h3&gt;

&lt;p&gt;I challenged myself with quizzes and small tests to reflect on how much I really understood — and I was surprised by how much I had retained!&lt;br&gt;&lt;br&gt;
These small self-checks gave me both clarity and confidence.&lt;/p&gt;

&lt;h3&gt;
  
  
  🧩 Practice Makes Power: 30+ Problems, 15 Assignments!
&lt;/h3&gt;

&lt;p&gt;This week, I stayed consistent and:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;✅ Solved &lt;strong&gt;30+ coding problems&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;✅ Completed &lt;strong&gt;15 assignment-style questions&lt;/strong&gt;
Each one sharpened my logic and made me fall a little more in love with problem-solving.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🧙‍♀️ Python’s Inbuilt Magic ✨
&lt;/h3&gt;

&lt;p&gt;Another gem this week was discovering Python’s &lt;strong&gt;inbuilt functions&lt;/strong&gt; — like &lt;code&gt;len()&lt;/code&gt;, &lt;code&gt;type()&lt;/code&gt;, &lt;code&gt;input()&lt;/code&gt;, &lt;code&gt;range()&lt;/code&gt;, and many more.&lt;br&gt;&lt;br&gt;
They’re like little spells that make your code &lt;strong&gt;compact, powerful, and clean&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  🌱 What’s Next?
&lt;/h3&gt;

&lt;p&gt;Next week, I’m excited to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Dive deeper into &lt;strong&gt;loops&lt;/strong&gt; and advanced &lt;strong&gt;operator usage&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Practice hands-on questions&lt;/li&gt;
&lt;li&gt;Explore &lt;strong&gt;mini assignments&lt;/strong&gt; to apply what I’ve learned
I can already feel my mind starting to think in logic blocks and loops. Python is becoming more intuitive with every passing day.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  💌 A Note to Future Me (and Anyone Reading)
&lt;/h3&gt;

&lt;p&gt;This journey isn’t about speed — it’s about &lt;strong&gt;depth, joy, and staying curious&lt;/strong&gt;.&lt;br&gt;&lt;br&gt;
Each line of code I write is not just syntax — it’s a small affirmation that I'm learning, growing, and becoming the programmer I dream of being.&lt;br&gt;
 &lt;strong&gt;“Keep showing up. Even when the bug bites back.”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Here’s to more bugs, more breakthroughs, and more beautiful logic.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Python — I think we’re just getting started 💚🐍&lt;/p&gt;

</description>
      <category>programming</category>
      <category>beginners</category>
      <category>python</category>
      <category>productivity</category>
    </item>
    <item>
      <title>My First Week with Python: A Summer of Curiosity and Code</title>
      <dc:creator>Khyati Sahu</dc:creator>
      <pubDate>Thu, 19 Jun 2025 19:05:02 +0000</pubDate>
      <link>https://dev.to/misspresidentcodes/my-first-week-with-python-a-summer-of-curiosity-and-code-2kap</link>
      <guid>https://dev.to/misspresidentcodes/my-first-week-with-python-a-summer-of-curiosity-and-code-2kap</guid>
      <description>&lt;p&gt;Hello, world!&lt;br&gt;
I’m a first-year engineering student from Madhav Institute of Technology &amp;amp; Science (Deemed University), currently on my summer break, and I’ve decided to spend this time not just relaxing — but learning. Growing. And most importantly, building a solid foundation in coding.&lt;br&gt;
This is the story of my first week learning Python, and if you're someone who's just starting out, or someone who loves seeing others learn, I hope this post finds you with a spark of joy.&lt;/p&gt;

&lt;p&gt;🐍 &lt;strong&gt;Why Python?&lt;/strong&gt;&lt;br&gt;
Python felt like the perfect companion for this journey — simple to read, powerful under the hood, and used across so many fields: web development, automation, AI, data science, you name it!&lt;br&gt;
But I didn’t want to just read about Python. I wanted to understand it, to try things, to break things, and fix them again. And so, I dove in.&lt;/p&gt;

&lt;p&gt;💫 &lt;strong&gt;Reflections From a Beginner’s Heart&lt;/strong&gt;&lt;br&gt;
I’m not perfect. I’ve written buggy code. I’ve stared at error messages like they were ancient riddles. But in every moment of frustration, there’s also this tiny flicker that says —&lt;br&gt;
&lt;strong&gt;“Hey, you’re learning. This is how growth looks.”&lt;/strong&gt;&lt;br&gt;
I may be at the start of this journey, but I am walking with wonder. And even when the road feels steep, I remind myself that every coder was once a confused beginner — just like me.&lt;/p&gt;

&lt;p&gt;🔹** What I’ve Learned in Week 1**&lt;br&gt;
Here’s what my mind is full of right now:&lt;br&gt;
🌸 Basics of Python Syntax&lt;br&gt;
The way Python talks is… soft-spoken and neat. No messy semicolons, no curly brackets. Just logic and indentation — like poetry for machines.&lt;/p&gt;

&lt;p&gt;🌸 Variables and Data Types&lt;br&gt;
From strings to integers, floats to booleans — I learned how to store and juggle different kinds of data. And yes, Python makes it very beginner-friendly.&lt;/p&gt;

&lt;p&gt;🌸 Input/Output Functions&lt;br&gt;
Using input() and print() gave me a sense of interaction — like the code wasn’t just doing things for me, but with me.&lt;/p&gt;

&lt;p&gt;🌸 Python 2 vs Python 3&lt;br&gt;
This was so eye-opening! I learned key differences like:&lt;br&gt;
print being a statement in Python 2, but a function in Python 3 and much more.&lt;br&gt;
(P.S. Python 3 is the future and the now!)&lt;/p&gt;

&lt;p&gt;🌸 Pattern Printing&lt;br&gt;
This was my first taste of real logic-building. Those triangle stars!&lt;br&gt;
They look innocent — but they're sneaky logic puzzles in disguise. I loved trying different loops and seeing shapes appear.&lt;/p&gt;

&lt;p&gt;✨** Let’s Grow Together**&lt;br&gt;
If you’re also on a coding journey — whether you’re at Day 1 or Year 5 — I’d love to hear from you. Share your favorite resources, tips, or just say hi in the comments! Let’s cheer each other on.&lt;br&gt;
Thanks for reading my little update. Until next time, keep coding, keep blooming. &lt;/p&gt;

</description>
      <category>beginners</category>
      <category>python</category>
      <category>coding</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
