<?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: Goodness Olawoore</title>
    <description>The latest articles on DEV Community by Goodness Olawoore (@goodnessolawoore).</description>
    <link>https://dev.to/goodnessolawoore</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%2F622153%2F685e152a-5924-4f8f-aa87-2673fbb40d6a.jpeg</url>
      <title>DEV Community: Goodness Olawoore</title>
      <link>https://dev.to/goodnessolawoore</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/goodnessolawoore"/>
    <language>en</language>
    <item>
      <title>A Quick Dive into the Python Programming Language.</title>
      <dc:creator>Goodness Olawoore</dc:creator>
      <pubDate>Sun, 09 May 2021 12:27:32 +0000</pubDate>
      <link>https://dev.to/goodnessolawoore/a-quick-dive-into-the-python-programming-language-2kef</link>
      <guid>https://dev.to/goodnessolawoore/a-quick-dive-into-the-python-programming-language-2kef</guid>
      <description>&lt;p&gt;Python is a very popular general-purpose programming language and has some of the world's largest products built on it. Google, Netflix, Uber, Spotify, Pinterest, Reddit, and Instagram are examples of great sites that are built on the python programming language. &lt;/p&gt;

&lt;h2&gt;
  
  
  PYTHON PHILOSOPHY
&lt;/h2&gt;

&lt;p&gt;Python is said to be the most beginner-friendly programming language anyone could learn. This philosophy was established way long ago, and as much as I am aware of, it hasn’t been challenged with a countering opinion. &lt;/p&gt;

&lt;p&gt;While I wouldn’t say python is the easiest programming language to learn, it sure is one of the pretty easy programming languages you could pick up at any point in time.&lt;/p&gt;

&lt;h2&gt;
  
  
  PYTHON IS AN OBJECT-ORIENTED PROGRAMMING LANGUAGE
&lt;/h2&gt;

&lt;p&gt;Object-Oriented Programming is a programming pattern that focuses on the concept of classes and objects. Python allows us to develop application softwares using this approach.  &lt;/p&gt;

&lt;p&gt;These objects are likened to real-world entities like cars, schools, books etc. Take for instance, an object could be a car with properties like colour, maker, model or a school with properties like classes, teachers, students, courses. &lt;/p&gt;

&lt;h2&gt;
  
  
  PYTHON IS A DYNAMICALLY TYPED LANGUAGE
&lt;/h2&gt;

&lt;p&gt;Python doesn't require you to declare the type of a variable while assigning a value to it, unlike some languages where you are compelled to declare the type of a variable before assigning it a value.&lt;/p&gt;

&lt;p&gt;For example, if you are going to declare a variable that will contain a string value in C#, you need to declare the type of that variable as a string before assigning it a value, otherwise, the program will return an error.&lt;/p&gt;

&lt;h4&gt;
  
  
  Example Below:
&lt;/h4&gt;

&lt;p&gt;In C#:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;string language = "Python";
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Whereas in python you don't need to declare the type at all.&lt;/p&gt;

&lt;h4&gt;
  
  
  Python:
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;language = "Python"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  PYTHON IS A GENERAL-PURPOSE LANGUAGE
&lt;/h2&gt;

&lt;p&gt;This basically means that python could be used for a wide range of things, ranging from web application development, mobile application development, desktop application development, game development, machine learning, artificial intelligence, data science, automation etc. &lt;/p&gt;

&lt;p&gt;While Python doesn’t singularly support all these variants/platforms, it has built-in libraries and frameworks that make working on these platforms possible and seamless. &lt;/p&gt;

&lt;h3&gt;
  
  
  Below are a few Python Frameworks/Libraries that you can leverage to suit your desired goal:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Web Development - Django, flask, Falcon, Web2py&lt;/li&gt;
&lt;li&gt;Data Science - Numpy, Pandas, Scrapy &lt;/li&gt;
&lt;li&gt;Mobile Development - Kivy &lt;/li&gt;
&lt;li&gt;Machine Learning and Artificial Intelligence - TensorFlow, PyTorch, Keras, Scikit-learn &lt;/li&gt;
&lt;li&gt;Desktop Development - Kivy, Tkinter, PyQT &lt;/li&gt;
&lt;li&gt;Game Development - Pygame, Pykyra, PyOpenGl, Kivy, Pyglet &lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  PYTHON IS VERY BEGINNER-FRIENDLY
&lt;/h2&gt;

&lt;p&gt;Python is written in pure English language and emphasises readability, unlike some programming languages that are somewhat naturally complex and would really take the grace of God for a beginner to understand the code that outputs "Hello World" (Hello to C++😊) &lt;/p&gt;

&lt;h2&gt;
  
  
  A LITTLE COMPARISON
&lt;/h2&gt;

&lt;p&gt;While curly brackets { } are only used to indicate the beginning and the ending of a code block in most programming languages, indentation is used instead in python.  &lt;/p&gt;

&lt;p&gt;And while indentations are mainly for styling purposes in other languages, it is a strict requirement for your code to get compiled and executed here. It basically tells the python interpreter that a series of code statements belongs to a particular block of code. &lt;/p&gt;

&lt;h2&gt;
  
  
  READABILITY
&lt;/h2&gt;

&lt;p&gt;Python programs are faster to write and much easier to read compared to other programming languages, and you can literally read a python code the way you’d read an English text. &lt;/p&gt;

&lt;h2&gt;
  
  
  PYTHON VERSIONS
&lt;/h2&gt;

&lt;p&gt;There are currently two versions of Python, which are version 2 and version 3. &lt;br&gt;
While Python version 2 passes for an older and legacy version of Python, Python version 3 is the current and actively supported version of the language. &lt;/p&gt;
&lt;h1&gt;
  
  
  GET STARTED WITH PYTHON
&lt;/h1&gt;
&lt;h3&gt;
  
  
  1. INTEGRATED DEVELOPMENT ENVIRONMENT (IDE) -
&lt;/h3&gt;

&lt;p&gt;An IDE basically provides developers with an interface to write code. There are a couple of IDEs &lt;strong&gt;(Integrated Development Environment)&lt;/strong&gt; that support the Python programming language. Anaconda, Sublime Texts, Atom, Visual Studio Code, PyCharm, Vim are good examples. &lt;/p&gt;

&lt;p&gt;Python also has a default IDLE &lt;strong&gt;(Integrated Development and Learning Environment)&lt;/strong&gt; which is automatically installed when you install python on your PC. It is an interactive window where you can type in python codes and see the result. This is very beginner-friendly and easy to use. &lt;/p&gt;

&lt;p&gt;I will be using the Visual Studio code IDE and the Python IDLE for the purpose of this article. You can  &lt;a href="https://code.visualstudio.com/download"&gt;download VS code&lt;/a&gt; if you don’t already have it, follow the instructions on the site to correctly install and get it running. &lt;/p&gt;
&lt;h3&gt;
  
  
  2. INSTALL PYTHON - 
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Download the latest version of python at  &lt;a href="http://www.python.org/downloads"&gt;www.python.org/downloads&lt;/a&gt;. Note that this guide is focused on the Windows Operating System.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--2C1U021s--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619549980/download_python_q6jjx1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--2C1U021s--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619549980/download_python_q6jjx1.png" alt="download VS code"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;To check if python is now installed, open the command prompt window on your computer, you can easily do this by pressing the &lt;strong&gt;Win + R&lt;/strong&gt; keys, this would automatically open a quick search window. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--EkyoapZe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/1._win_R_c0ukyz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--EkyoapZe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/1._win_R_c0ukyz.png" alt="Win + R"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Type “cmd” in the search box and press Enter, your command prompt window will open afterwards. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--VEucIMEQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/2._command_promt_window_opens_bonk0g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--VEucIMEQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/2._command_promt_window_opens_bonk0g.png" alt="cmd"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Type the word “python” or “py” in your command prompt. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Input:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;python
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;OR&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;py
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Desired result:
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--YNNw5vdC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/2.1._checks_if_python_is_installed_wcctfy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--YNNw5vdC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/2.1._checks_if_python_is_installed_wcctfy.png" alt="checks if python is installed"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;This would check if python is installed and if yes, it would return the version of python that you’re running, also the version of your system OS, plus some additional information.This is said to be the easiest way to check if Python is installed on a windows PC.&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;But if you are sure that python is installed and you just want to check for the version that you’re running, you could type

&lt;code&gt;python --version&lt;/code&gt;

. This would return the version of python installed on your computer. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Input:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;python --version
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Desired result:
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--BCLaKeyP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/4._python_--version_rzkvyd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--BCLaKeyP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/4._python_--version_rzkvyd.png" alt="python --version"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;br&gt;
  &lt;code&gt;py --version&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
 would also work.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Input:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;py --version
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Desired result:
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--vF0SyVXU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/3._py_--version_ak6gnc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--vF0SyVXU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/3._py_--version_ak6gnc.png" alt="py --version"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;As you can see, I am running on the latest version of Python (Python 3.9).&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Now that you have confirmed that python is successfully installed on your machine, I know that you are eager to write your first Python code. This can be done in three different ways: 

&lt;ol&gt;
&lt;li&gt;Open Visual Studio Code &lt;/li&gt;
&lt;li&gt;Switch to a python interactive environment by typing "python" in your command prompt interface. &lt;/li&gt;
&lt;li&gt;Close the command prompt and open the built-in Interactive Development and Learning Environment (IDLE), that was installed with python by default. &lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Let’s go with the 3rd option.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Head over to the folder that contains your Python installation packages. My directory looks like this, &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--eVCdfDYJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/5._run_python_application_udtf5v.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--eVCdfDYJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/5._run_python_application_udtf5v.png" alt="my directory"&gt;&lt;/a&gt;  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Run the Python application. This will open a Python IDLE where you can play around with python codes. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--uAwqwSEk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/6._opens_IDLE_ytnzzy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--uAwqwSEk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/6._opens_IDLE_ytnzzy.png" alt="open IDLE"&gt;&lt;/a&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Alternatively, you can hit the &lt;strong&gt;Win + S&lt;/strong&gt; keys and type "python" into the search box. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--wvTN-2GM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550246/7._win_S_ja0orc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--wvTN-2GM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550246/7._win_S_ja0orc.png" alt="Win + S"&gt;&lt;/a&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click on the &lt;strong&gt;IDLE (Python 3.9 64-bit)&lt;/strong&gt;. If you are running another version of python other than version 3.9 or 64-bit, you won’t see &lt;strong&gt;“Python 3.9 64-bit”&lt;/strong&gt;, you will see the exact version that you are running. &lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;Now that you are in your python interactive environment, you might want to type “help( )” to gain insight into the environment, available python modules etc. &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Input:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;help()
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Desired result:
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--jvaMTzgF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550246/8._help_xaqqfe.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--jvaMTzgF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550246/8._help_xaqqfe.png" alt="Help"&gt;&lt;/a&gt; &lt;br&gt;
You will see a couple of instructions like the one above. You can follow on if you wish. &lt;/p&gt;
&lt;h3&gt;
  
  
  3. RUN YOUR FIRST PYTHON PROGRAM -
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;You are about to write your first ever python code, fasten your seatbelt. &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;What first statement could we print if not the message that welcomes everyone to the world of programming😊.  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;In python, the

&lt;code&gt;print()&lt;/code&gt;

function is used to display a message to the screen. Let’s go ahead and display “Hello World”. 
- To display an “Hello World” text in Python, we type

&lt;code&gt;print(“Hello World”)&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;in C++, this same code is written as&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#include&amp;lt;iostream&amp;gt;     
using namespace std;  

int main(){ 
    cout&amp;lt;&amp;lt;"Hello World"; 
    return 0; 
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;with each line having certain functions they do. But since you already said “Yes” to python, I urge you to be focused and not be distracted. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Now you can switch back to your Python IDLE. Type “print(“Hello World)” and see your first python program run before your eyes. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--3K4F_yda--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/9._print_hello_world_yotsux.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--3K4F_yda--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619550245/9._print_hello_world_yotsux.png" alt="print hello world in the IDLE"&gt;&lt;/a&gt; &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Did you get a result like the one above? If yes, then &lt;strong&gt;Congratulations!&lt;/strong&gt; You just successfully ran your first python program.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ul&gt;
&lt;li&gt;Note that the print( ) function is case sensitive, and

&lt;code&gt;Print()&lt;/code&gt;

will not work as

&lt;code&gt;print()&lt;/code&gt;

. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Notice how we didn’t use the Visual Studio Code? It’s all good, as you won't need to install it again when you want to start writing codes on an IDE. &lt;/p&gt;

&lt;p&gt;Now that you’ve written your first ever python program, go rejoicing, for you shall now be called a Python Programmer 💃🕺.&lt;/p&gt;

&lt;p&gt;I recently launched this blog, and I wrote about it, you can &lt;a href="https://dev.to/goodnessolawoore/i-am-starting-a-technical-blog-2h4h"&gt;check it out here&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>python</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>I am starting a technical blog!!!</title>
      <dc:creator>Goodness Olawoore</dc:creator>
      <pubDate>Sun, 09 May 2021 12:19:05 +0000</pubDate>
      <link>https://dev.to/goodnessolawoore/i-am-starting-a-technical-blog-2h4h</link>
      <guid>https://dev.to/goodnessolawoore/i-am-starting-a-technical-blog-2h4h</guid>
      <description>&lt;p&gt;I have always wanted to write technical articles and blog posts, but every single time, I have also asked myself if I can really handle the stress/work that comes with putting long words together.&lt;/p&gt;

&lt;p&gt;Well, I finally got the inspiration to start writing when  &lt;a href="https://www.linkedin.com/in/mbaoma-chioma-mary"&gt;Chioma&lt;/a&gt; shared a blog post where &lt;a href="https://www.linkedin.com/in/ifihan-olusheye"&gt;Ifihan &lt;/a&gt;  wrote about the differences and similarities between Lists and Tuples in python. &lt;/p&gt;

&lt;p&gt;I jokingly replied &lt;em&gt;“Lemme carry my pen and write about sets vs dictionaries”&lt;/em&gt;, I had expected her to send a “lol” response or a laughing emoji in return but nah, she replied “oya”, meaning, do it! Then it dawned on me that I just got trapped in my own net😂. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ZE8VC_jK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619548677/chat_screenshot_h2ruef.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZE8VC_jK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dclfepekx/image/upload/v1619548677/chat_screenshot_h2ruef.jpg" alt="chat snapshot"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  So, why did I make that comment in the first place?
&lt;/h2&gt;

&lt;p&gt;Lists and Tuples are two of the 4 built-in data types in Python with Sets and Dictionaries completing them. So, I thought, if someone wrote about Lists and Tuples, let me complement the job with the remaining two members of the built-in data types family. This was all I needed to start!&lt;/p&gt;

&lt;p&gt;My first article will be out in no time. Instead of writing about Sets and Dictionaries, I will be writing about the Python programming language itself, bringing you into the world of Python (installation steps and a guide to running your first program). &lt;/p&gt;

&lt;p&gt;So take this as my debut post. Moving forward, I will be using this platform to share my thoughts, knowledge and new learnings on things related to Python, Microsoft Azure, Developer tools, and technology in general.&lt;/p&gt;

&lt;p&gt;Peace💚✌️&lt;/p&gt;

</description>
      <category>python</category>
      <category>codenewbie</category>
      <category>techblog</category>
      <category>technicalwriting</category>
    </item>
  </channel>
</rss>
