Alaa Mohamed
3 min read
python concept for Data Science "List"
In this blog we will explain List concept in python so -what is the List ?why we used it? A list can be defined as a collection of values...
fredy chimire
4 min read
Understanding of args and kwargs
args and kwargs allow you to pass multiple arguments or keyword arguments to a function. # Consider the following example. def my_sum(a,...
Safia Bashir
2 min read
Python Concepts for Data Science : Vectors
Vectors In this tutorial, we will learn about various vector creation methods in Python. Python vectors are one-dimensional arrays that...
Safia Bashir
2 min read
Python Concepts for Data Science : Lists
Lists In this tutorial, we are going to talk about python lists and their importance. In Python, lists are perhaps the most frequently...
Abu Bin Fahd
2 min read
Python for Data Science: Dictionary
Like lists, Dictionaries are collections of many values. But in the lists, we have indexes whereas in dictionaries we can use any kind of...
Abu Bin Fahd
2 min read
Recursion: One of the most powerful programing techniques
First, let's talk about the recursion theory. Look at the picture carefully. We want to sort the number Increasingly. We break the first...
ayenadykyaw1
2 min read
Data Science Concept: Data Visualization
Introduction to Matplotlib: Data Visualization Tool in Python Data visualization is really important in data analysis. Data visualization...
Ibrahim Rustemov
1 min read
Python Lists
Lists are most used datatype in Python which can be written as a list of comma-separated values. Lists are created using square...
Vanessa Arhin
2 min read
Python Concept: Boolean
Python boolean is one of python's built in data types. It is used to evaluate expression(s) or in other words represent the truth value...
Vanessa Arhin
3 min read
Python Lists
A python list collection of different items put together. In our lives, we make lists for certain things, activities, etc. The same thing...
Ntandoyenkosi Matshisela
3 min read
Using functions in calculating Zimbabwean Tax
Most of the times the calculation of tax is left to the accounts offices. To some the calculation is difficult and confusing. We have...
Teresa Rady
2 min read
Functions in Python
Definition The concept of functions in Python is the similar as in Algebra, where we define a certain operation to be performed on a...
ben othmen rabeb
2 min read
Project: Investigating Guest Stars in The Office
In this project, we will take a look at a dataset of The Office episodes, and try to understand how the popularity and quality of the...
tasnim assali
1 min read
Python Functions
A function is a block of code which only runs when it is called. You can pass data, known as parameters, into a function. A function can...
tasnim assali
2 min read
Python Lists
Python offers a range of compound data types often referred to as sequences. list is one of the most frequently used and very versatile...
Kala Maya Sanyasi
1 min read
Python break and continue statements
The break and continue statements in python alters the flow of a normal loop. Example of break state is illustrated below. Here the...
Kala Maya Sanyasi
1 min read
Python Sets
Python sets are unordered collection of items with no duplicates and the elements cannot be changed. It can be used to perform...
Sadekeen
1 min read
Calculate Your BMI with Python
Writing a program in python is easy yet confusing. The simpler the language the complex it is sometimes to handle. But simply python is...
Abdelrhman Gaber
2 min read
Python Functions
What is function ? A function is a block of code which only runs when it is called. You can pass data, known as parameters, into a...
Abdelrhman Gaber
2 min read
Python For Loops
Introduction : A for loop is used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string). This...
Abdelrhman Gaber
3 min read
Investigating Guest Stars in The Office
Introduction : The Office! What started as a British mockumentary series about office culture in 2001 has since spawned ten other...
Youssef Hussien
1 min read
Heavyweight Champ (Pounds to Ounces & Kilograms)
Hello folks, This is youssef Hussien and this is my second blog post here:) I hope that I can perfectly convey my message to you. This...
Youssef Hussien
1 min read
Fahrenheit to Celsius Converter "100 C DEAD"
Hello folks, This is youssef Hussien and this is my first blog post ever :) I hope that I can perfectly convey my message to you. This...
Mohamed Elshamy
1 min read
BMI project
A BMI Calculator will take in the height and weight of the individual and will calculate the BMI of the person. Body mass index (BMI) is...