Posts

Showing posts from February, 2025

Featured Post

How to Create HTML Headings and Paragraphs

Image
  Introduction This HTML guide is part of the full-stack web development course, starting from basic HTML. In this post, we will learn what are HTML tags and how to write the heading tag in HTML. These tags are usually some words enclosed by  angle brackets, that is written as < and >. The basic HTML tags that form part of the structure of a document in html  are heading tags, paragraph tags  and listing tags. There are several more tags, but, we will go through all of them  in different posts, so that , you are not burdened to learn all of the basics in just one sitting! What are HTML tags? HTML tags are basic html elements that assists you to structure your HTML document and Heading tags are used to write different headings for a html document as explained in detail in this post.  Headings Every document has different types of headings and html has 6 types of heading tags , namely, h1 ,h2 ,h3, h4, h5 and h6. Let’s understand the differences between ...

Python Input() Mastery: Getting Your Python Code to Listen

Image
 Python Input() Mastery: Getting Your Python Code to Listen  Introduction  This Python Beginner tutorial will guide you on the usage of input() function in python. We use input function in all our Python Projects, so, it's necessary to understand,  what is input function, how it is used and why it is used in python projects.  What is input() function  Python input() function is a function that accepts input values from a user when prompted to provide an input. It is an inbuilt function that reads the input values from the user and after evaluating it, by default, the input() function will return the input as a string. The input function doesn't have parameters inside its parenthesis, but, it takes a prompt in the form of a string inside it's parenthesis. For example: Consider a variable that you created , name, and you want to get input of different name values from the user, so you use the input function with a prompt inside it's parenthesis as shown below...

A Guide To Master Python Variables from Zero To Coder

Image
A Guide To Master Python Variables from Zero To Coder 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 "...

Stop Mixing Them Up: Arguments vs Parameters in Python

Image
Stop Mixing Them Up: Arguments vs Parameters in Python      INTRODUCTION \ As a beginner learning Python, we are always coming across the terms parameters and arguments frequently and many new coders are often confused with the two different terms parameters and arguments, with the consequence that they even use it wrongly many times. This post is to sort out the differences between the two terms, parameters and arguments accordingly to their usage in Python functions. WHAT ARE PARAMETERS A parameter in Python is actually a variable created in that function, that works like a placeholder for some data value that the function will be use later.  For example, if we consider an example a function add_num which is used to add two numbers, then it will be written the following manner:  def add_num(x,y): In this above situation, add_num is the name of the function with a task of adding the two number variables x and y. def or define is used to define or descraibe the ...