<?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: Hillary Nartey</title>
    <description>The latest articles on DEV Community by Hillary Nartey (@hillary_nartey).</description>
    <link>https://dev.to/hillary_nartey</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%2F3928946%2Fbb8512cb-8a73-4af4-8a54-1e774d4a2270.jpeg</url>
      <title>DEV Community: Hillary Nartey</title>
      <link>https://dev.to/hillary_nartey</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hillary_nartey"/>
    <language>en</language>
    <item>
      <title>From Zero to Python: My Beginner Journey as a New Learner</title>
      <dc:creator>Hillary Nartey</dc:creator>
      <pubDate>Wed, 13 May 2026 10:35:04 +0000</pubDate>
      <link>https://dev.to/hillary_nartey/from-zero-to-python-my-beginner-journey-as-a-new-learner-3fk3</link>
      <guid>https://dev.to/hillary_nartey/from-zero-to-python-my-beginner-journey-as-a-new-learner-3fk3</guid>
      <description>&lt;p&gt;Who Am I and Why Am I Writing This?&lt;/p&gt;

&lt;p&gt;Hi everyone, my name is Hillary Nartey, and I just started learning Python a few days ago. Yes, just a few days ago, I was a complete beginner.&lt;/p&gt;

&lt;p&gt;I decided to document my journey from day one so that other newbies like me can follow along, learn from my mistakes, and hopefully feel less alone in the process. If you are thinking about learning Python and don't know where to start, this post is for you.&lt;/p&gt;

&lt;p&gt;Why Python?&lt;/p&gt;

&lt;p&gt;I chose Python because it is one of the most beginner-friendly programming languages out there. It is widely used in data science, web development, automation, and artificial intelligence, so learning it opens a lot of doors.&lt;/p&gt;

&lt;p&gt;I want to build real skills that are useful in today's world, and Python felt like the perfect starting point.&lt;/p&gt;

&lt;p&gt;The Tools I Am Using&lt;/p&gt;

&lt;p&gt;You don't need to spend any money to start learning Python. Here are the free tools I am using:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Google Colab&lt;br&gt;
This is a free online tool that lets you write and run Python code directly in your browser, no installation needed. It is perfect for beginners because you can just open it and start coding right away.&lt;/p&gt;
&lt;h2&gt;
  
  
  &lt;a href="https://colab.research.google.com" rel="noopener noreferrer"&gt;colab.research.google.com&lt;/a&gt;
&lt;/h2&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Coursera (Free Audit)&lt;br&gt;
I am taking Python courses on Coursera for free by using the &lt;strong&gt;audit&lt;/strong&gt; option. When you open a course, look for a small "Audit" link below the enroll button. You get access to all the video lectures and most course materials — without paying a cent.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A great beginner course to look for is &lt;strong&gt;"Python for Everybody"&lt;/strong&gt; by the University of Michigan.&lt;br&gt;
&lt;a href="https://www.coursera.org" rel="noopener noreferrer"&gt;coursera.org&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I tried installing #Anaconda on my laptop, but was facing difficulty that why I opted for Colab&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Have Learned So Far
&lt;/h2&gt;

&lt;p&gt;I have only been at this for a few days, but here is what I have covered so far:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What Python is and why it is popular&lt;/li&gt;
&lt;li&gt;How to write your first line of code: `print("Hello, World!").&lt;/li&gt;
&lt;li&gt;Basic Python syntax and how to run code in Google Colab&lt;/li&gt;
&lt;li&gt;Variables and data types (strings, integers, floats)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It might not sound like much, but every expert started exactly where I am right now.&lt;/p&gt;

&lt;h2&gt;
  
  
  My First Python Code
&lt;/h2&gt;

&lt;p&gt;Here is the very first piece of code I wrote:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&lt;/code&gt;&lt;code&gt;python&lt;br&gt;
print("Hello, World!")&lt;br&gt;
&lt;/code&gt;&lt;code&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Simple, right? But seeing those words appear on the screen for the first time felt amazing. It made everything feel real.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next?
&lt;/h2&gt;

&lt;p&gt;I plan to keep learning step by step and document everything here. Coming up next:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Python lists, loops, and conditions&lt;/li&gt;
&lt;li&gt;Writing simple functions&lt;/li&gt;
&lt;li&gt;Mini beginner projects&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  A Message to Other Beginners
&lt;/h2&gt;

&lt;p&gt;If you are just starting like me, don't be discouraged by how much there is to learn. Focus on one small thing at a time. Celebrate the small wins. And don't be afraid to make mistakes,__ that's how we learn.&lt;/p&gt;

&lt;p&gt;You don't have to be an expert to start. You just have to start.&lt;/p&gt;

&lt;p&gt;Follow along with my journey, and let's learn Python together.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Written by Hillary Nartey | Beginner Python Learner&lt;/em&gt;&lt;br&gt;
&lt;em&gt;Feel free to leave a comment if you are also just starting. Let's connect!&lt;/em&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>beginners</category>
      <category>opensource</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
