Wednesday, July 28, 2021
Python 102: Lambda Functions
Thursday, July 22, 2021
Python 102: Functions
A function is a group of related statements that carry out a specific task when called.
Its syntax is :
Tuesday, July 20, 2021
Saturday, July 17, 2021
Python 101: What Have You Learnt
Can you write a program to accept a number input (only numbers) and multiply it by pi from the math library?
DOWNLOAD THE CODE
Friday, July 16, 2021
Python 101: Operators
An operator in a programming language is a symbol that tells the compiler or interpreter to perform specific mathematical, relational or logical operation and produce final result.
Python 101: Import
Once you start to advance in python import would begin to appear in your codes a lot. If not for anything else, but to link different pages (modules).
Python has two types of modules:
Built in and User defined.
Built-in modules
This are the modules that come by default with the python software.
User defined modules
This are basically created by the programmer
Python 101: Input/Output
Type conversion
Type conversion is basically changing one data type to another. They are two types of conversion in python (and almost all other languagues) , they are:
1. implicit type conversion
2. explicit type conversion
Wednesday, July 14, 2021
Python 101: Data Types
Python 101: Variables
Variables should not be new to you.
It is like a container for storing data.
An example is:
amount = 3
Here amount is a variable which was declared and 3 is an integer (data type) which is currently held in amount.
Since amount is not a constant, it can easily be changed.
What is a constant?
Isn't it obvious, but we would look into it later.
Python 101: Debug and Run
The python program is a high level language, this simply means that the computer does not understand what you have written.
Python 101: Hello World
Hello world has officially become the first program you run when learning a language newly.
Python 101: The Setup
In order to run a language, certain softwares are needed. From text editors, to compilers, and so forth.
Python 101: Introduction
Whether you are new to programming, or you've been in the game for a long time, python is one programming language I'm 100% sure you have heard about.
Welcome
Hey guys. welcome to my blog. Basically, this blog is supposed to introduce you to the world of programming.
This month I'm going to run a recreation series. Basically, all I do is get a site and recreate it.
Don't forget to tune in as frequently as possible to get the latest updates.
If you have any site you'd like to see me recreate please leave the link in the comments below.
HTML 101: Form
I believe that everyone who has made use of the internet knows what a form is but in case you don't know, a form is a way of receiving...
-
Lists are used to group together various pieces of information so they can be easily read and associated with each other. They are also use...
-
HTML attributes are special words that are used inside an HTML page's opening tag to control an element's behavior.



