

Getting started with Python Dictionary
Dictionary is an important data type built into Python. It contains key-value pair elements. You should know that keys are unique and...
arijbentej
2 min read
Python Data Types
Introduction Python is becoming one the widely used and acceptable data science tool worldwide due to its open-source nature plus...
Yosef Zeru Seyoum
2 min read
Python Lists
Introduction Python is one of the world's most widely held programming languages, and the reason behind its popular acceptance includes,...
Yosef Zeru Seyoum
2 min read
Indentation
Wondering why when we as a kids missed the indentation in the writing class we lost marks? what is this white space? why is it important?...
Rawda Rumaieh
2 min read


constructing a function never been easier !
Have you ever spent time to determine how many arguments you should pass to your function? After each line of code you realize you should...
Rawda Rumaieh
2 min read
Python Dictionaries
Come let's talk about amazing data structure in python language. DICTIONARIES !!! and How to use them.
Isuru Lakshan
3 min read
Loops in Python
Today we are going to talk about the most crucial concept in any programming language in this world. If we do something in a loop It also...
Isuru Lakshan
3 min read


Python map(): Processing iterables without using for or while loop
However, back in 1993, the Python community was demanding some functional programming features. They were asking for: Anonymous functions...
Aruna Nuwantha
2 min read


Why Use Lambda Functions?
What are Lambda Functions? In Python, we use the lambda keyword to declare an anonymous function, which is why we refer to them as...
Mahmoud Morsy
4 min read


List Comprehension in Python
Introduction Python is well-known for allowing you to write code that is beautiful, simple, and nearly as easy to understand as plain...
Aruna Nuwantha
3 min read


Multiplying all elements in list
since “A Journey of a Thousand Miles Begins with a Single Step” understanding how to basically reach every element in a list and using...
Rawda Rumaieh
1 min read


calculate your BMI for better health
As obesity doesn't only affect your physical health it can have a damaging effect on the quality of life. thus evaluating the body mass...
Rawda Rumaieh
1 min read


Python Scope
A variable is only available from inside the region it is created. This is called scope. Local Scope A variable created inside a function...
Mohamed Adel
2 min read


Python sets
Sets are used to store multiple items in a single variable. Set is one of 4 built-in data types in Python used to store collections of...
Mohamed Adel
2 min read


The Anagram
return true if string_1 is an anagram of string_2 An anagram is a situation where among the two given strings or numbers, one of them is...
Mohamed Adel
2 min read


Convert roman numbers to a decimal using python
One of the most favorite questions in a coding interview is to convert Roman numbers to decimals. In this article, I’ll walk you through...
Mohamed Adel
2 min read
Fahrenheit to Celsius Converter
How does it work? Generally to measure the temperature we make use of one of these two popular units i.e. Fahrenheit & Celsius....
Mahmoud Abdullah
1 min read
Prime Numbers
A prime number (or a prime) is a natural number greater than 1 that is not a product of two smaller natural numbers. The function below...
Mahmoud Abdullah
3 min read


Number To Word Converter
Following is the implementation for the same. The code supports numbers up to 4 digits, i.e., numbers from 0 to 9999. Idea is to create...
Aruna Nuwantha
2 min read


BMI App using python
Body Mass Index (BMI) is a commonly used indicator that gives information about how healthy your body is. It is given as a ratio between...
Aruna Nuwantha
1 min read


Python Concepts: Lists
A list is an in-built datatype in python used to store a collection of data. a list can be written as a sequence of comma-separated...
mrbenjaminowusu
4 min read


Genders in Python aka Data Types:)
This blog introduces the concept of data types in Python.
Youssef Hussien
3 min read


Functions In Python (A Handy Tool)
A brief intro to functions in python with a small example.
Youssef Hussien
1 min read


Investigating Guest Stars in The Office
The Office! What started as a British mockumentary series about office culture in 2001 has since spawned ten other variants across the...
Rubash Mali
3 min read