Posts

Showing posts from January, 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...

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 ...