Posts

Showing posts from 2024

Featured Post

Variables in Python: Python For Beginners

Image
Variables in Python: Python For Beginners Introduction This tutorial is for Python beginners who are confused with the usage of python variables. I will be first starting with the general definition of the term variable and then I will go on to explain it's usage, how it is created and the advantages of using python variables. What is a Variable A Variable is a container or placeholder for storing values while we carry out several tasks inside a Python function. A variable can store integers, float, string,list,tuple and even boolean. How Variables are Created & Declared In Python, we do not need any specific method or syntaxes to create variables. There is no need of explicitly declaring a variable. We just create a variable by assigning it a value with the 'equal to' sign and then a variable is created immediately! For Example: name = "Tracy Wills" age = 25 year = 2025 In the above examples, we created a variable by assigning it a value of "Tracy Wills...

BUILD A TODO LIST IN PYTHON

Image
Build a TODO List in Python|Python For Beginners  Overview The objective is to build a todo list to which we can add items, remove the added items, edit the items and even if required, delete out the entire list itself. We will learn here step by step, how to build the todo list with the above  CRUD (Create, Remove, Update/edit, and Delete ) features.  This is a CRUD list  app  that we are building as we can Create, Remove, Update items in the list and Delete the entire list itself. We will be using Python3 to build this Project. Introduction This Python project explanation is for beginners learning Python Programming. By doing this simple Todo list, you will learn several concepts of Python, such as while True loops, if-elif-else loops, for loop, adding, updating, removing items from a list , def() function, etc.  Importing os and time We import time to let the screen pause for a while before clearing  and we import os to clear the screen . Initializi...

Reminiscences Of My Early Coding Journey As A Beginner

Image
  A Beginner's Early Coding Journey                          Picture credits : Blue Retractable Pen by Lukas at Pexels  INTRODUCTION I have struggled several times and sometimeseven gave up on learning to code and here, I wish to write about my coding journey and all my struggles on how I managed to cross all the hurdles that came on my way! If I can do it, so can you! Through this blog post explaining my early coding phase as a beginner, I want to guide you to be successful in your coding journey, despite many early struggles in your early learning stages. When I first started out on learning to code, I did not even know what programming language I wanted to learn. Then, I realized that I love to explore websites and landing pages, so, why not learn how to code beautiful website designs and landing pages etc.? Then, I started browsing for free websites to learn web design and the first place that I searched was ...