Posts

Showing posts from June, 2023

Featured Post

How To Use While Loops In Python

Image
How To Use While Loops In Python Overview  This beginners Python guide will explain the steps for working with 'while' loops in Python for beginners. Introduction  The Python while loops help to execute a set of statements in Python functions,  as long as a particular specified condition is True. Let us understand the while loop with a simple python example exercise, of a while loop usage, where we are trying to count numbers from 1 to 10, with a condition of the number being less than 10. We create a variable called num, and initiate it with a initial value of 1 and we carry out iteration of this num variable, whereby, it is incrementing every time it loops, by incrementing by 1.  Code num = 1 while num < 10 :       print(num)       num += 1 # output   1 2 3 4 5 6 7   8  9 In the above case, we performed iteration of the while loop where every time the loop iterates, the num variable gets incremented by 1 a...

How to remember code in your learning phase

Image
How To Remember Code In Your Learning Phase How to remember code is the biggest fear factor in every beginner's mind when setting off to learn Programming. You may heard some friends or colleagues brag that " Oh, I could memorize code so fast and very easily , as I have a sharp memory !" After hearing this many times in a row, you tend to get disappointed or even slow down in your learning journey and some learners may even give up learning to code. Now, let me tell you, please stop listening to others' brag stories and just focus on you as a learner while learning to code. Just compare you to yourself and no one else! In this article, I will be providing you with enough tips and best practices to strengthen the process of your learning journey and you will then realize that it was a waste of time looking at other learners' learning process. DOCUMENT EVERYTHING There are different ways to document code, and given below are pointers to document your code. Write dow...

What Programming Language Should You Learn First As A Beginner?

Image
What Programming Language Should You Learn First As A  Total Beginner?   Learning your first programming language can be a very daunting affair indeed! I will help you  decide how to make a choice of your very first programming language as a beginner in coding. There are several factors to consider before deciding what programming language to choose as a beginner. Let us go over all the factors one by one to help you reach your decision smoothly. Career Goals The main reason that you want to learn programming or coding is very important for you to think about , before you even consider what language you should go for as a beginner.  Are you learning programming to become a game developer, front-end web developer,  back-end  web developer, full-stack web developer, data scientist, artificial intelligence, web3 developer, software engineer, wordpress developer, web designer, cyber security expert, game designer, no-code developer etc. I will give you a brief...