Loops in python
This is less like the for a keyword in other programming languages and works more like an iterator method as found in other...
Gehad Hisham
2 min read
Functions in Python
Python is a general-purpose language so it is not just for data science. It can be used for web development, mobile application, game...
Gehad Hisham
2 min read
Python's Functions
Why use a Function? Functions are a convenient way to group our code into reusable blocks. A function contains a sequence of steps that...
Amr Mohamed Salama
2 min read

Program to print prime numbers from 1 to N.
#prime #from1toN #python Given a number N, the task is to print the prime numbers from 1 to N. Examples: Input: N = 10 Output: 2, 3, 5, 7...
Amr Ahmed Ramadan
1 min read


NAICS data analysis: A review
by Gilbert T. I. Introduction NAICS (North American Industry Classification System) is an industry classification system developed by the...
Gilbert Temgoua
9 min read

Python Program to Check Prime Number
In this article an example to check whether an integer is a prime number or not using for loop and if...else statement. If the number is...
Marawan Mohamed
1 min read


BMI Calculator Using Python
In this article, we will learn how to create a Body Mass Index(BMI) calculator using python. Before that, we need to understand the term...
Marawan Mohamed
1 min read

Time Series Analysis of NAICS
The North American Industry Classification System (NAICS) is an industry classification system developed by the statistical agencies of...
Nargiz Huseynova
5 min read
--- North American Industry Classification System (NAICS)
The North American Industry Classification System (NAICS) is an industry classification system developed by the statistical agencies of...
Sakayo Toadoum Sari
14 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...
Ahmed Shebl
4 min read

Body Mass Index (BMI) calculator
Create a Body Mass Index (BMI) Calculator with the help of the Python programming language (OOP). But we get started creating one; let us...
Amr Ahmed Ramadan
2 min read


Time Series Analysis of NAICS(North American Industry Classification System)
Time series analysis is a statistical method to analyze past data within a given duration of time to forecast the future. In this blog,...
Tanushree Nepal
3 min read
Loops in Python
Loops enable us to alter the flow of the program so that instead of writing the same code, again and again, we can repeat the same code a...
Ahmed Shebl
2 min read
Lambda expressions in Python
Lambda expressions are one of the most useful tools in Python. lambda expressions allow us to create "anonymous" functions. This...
Ahmed Shebl
2 min read

Investigating Guest Stars in The Office
Some times View an image is enough for solve problems. so Data Visualization will help you to explore your Data but before draw let's...
aya abdalsalam
2 min read
Md. Khairul Islam
0 min read

NAICS Time Series Analysis
The North American Industry Classification System (NAICS) is an industry classification system developed by the statistical agencies of...
Vanessa Arhin
2 min read
Guessing Game Challenge
Let's use while loops to create a guessing game. The Challenge: Write a program that picks a random integer from 1 to 100, and has...
amrali150
3 min read
Convert temperature in Fahrenheit to Celsius.
Fahrenheit to Celsius In order to convert Fahrenheit to Celsius, we use the formula, °C = (°F - 32) × 5/9, in which the value of the...
amrali150
1 min read
Create Mad Libs game in Python
Step 1: In the first step, we will take the required input from the user and store it in the python variable to use in the future in...
ahmed gamal
1 min read
Fahrenheit to Celsius Converter
Hey everyone, today we will be building a Fahrenheit to Celsius Converter in Python. How does it work? Generally to measure the...
ahmed gamal
1 min read

Time Series Analysis of NAICS
NAICS stands for The North America Industry Classification System developed by three countries Canada,US and Mexico.The goal of this blog...
Rohit Roy
2 min read
show some statistics
In this code, I didn't use built in function for statistics. I made two function that takes a list argument: 1 - list_average(lst) -->...
Ahmed Shebl
1 min read
Python App to Convert temperature in Fahrenheit to Celsius.
I made a function that takes one argument (fah) which is the degree in Fahrenheit def fah_to_cel(fah): # (32°F − 32) × 5/9 = 0°C cel =...
Ahmed Shebl
1 min read