

Python Concept For Data Science: Loops
Loops in programming are used to repeat a specific block of code and to iterate over a sequence of elements. We have two types of loops...
asma kirli
2 min read


Python Concepts For Data Science: lambda expressions
Lambda expression is an anonymous function, it can take any numbers of arguments but can only have one expression returned. Syntax:...
asma kirli
1 min read
Random Number Guessing Using Python
In this blog we will see how we create a simple number guessing game using python. The Number guessing game is about guessing the number...
Ramesh Banjade
1 min read


Web Scraping using Python
i needed to buy a new laptop so i checked so a tunisian site called https://www.tunisianet.com.tn/ to compare laptop prices and...
Bechir Mathlouthi
1 min read


BMI Calculator using Python
this program called BMI Calculator will take in the height and weight of the individual and will calculate the BMI of the person. Body...
Bechir Mathlouthi
1 min read
Profit and Loss Calculator
As business firm, you would always want to know how well you are performing and if you are making more than expected or less than what...
ekow.a.indome
1 min read
Countdown timer in Python
In this article, we are going to see how we can write a countdown timer with python. Lets first review the whole bunch of code and look...
Abdi Tolesa
1 min read
BMI Calculator
Body mass index(BMI) is a measure of body fat based on height and weight that applies to adult men and women. To know your bmi, the...
ekow.a.indome
2 min read


Python Program to Convert Binary Number to Decimal
Introduction: A binary number is a number expressed in the base-2 numeral system or binary numeral system, which uses only two symbols 0...
Fatma Ali
1 min read


Count character occurrences in a given sentence using python
In this post we learn how count characters, special characters #*&@.... and spaces occurrences in a given word, phrase or sentence. Get...
Eman Mahmoud
1 min read
Python Concepts for Data Science: Lists
In this blog we will discuss about "Lists" which is important data structure in python to store multiple elements in one variable, also...
abdelrahman.shaban7000
2 min read
Python Program to Check if a Number is Positive, Negative or 0
simple program to check whether a number entered by the user is positive, negative or zero. num = float(input("Enter a number: ")) if num...
Nehal Sherif
1 min read


building an Fahrenheit to Celsius Converter
today we will be building a Fahrenheit to Celsius Converter in Python. Generally to measure the temperature we make use of one of these...
Nehal Sherif
1 min read


Body Mass Index Calculator using Python
The easiest way to Code BMI Calculator in Python
Umme Rubaiyat Chowdhury
1 min read


Body Mass Index (BMI) Calculator For Adults
Body mass index (BMI) is actually an estimate of body fat based on height and weight. In this blog I am going to take a reference of BMI...
Roshan Gyawali
2 min read


Number Guessing Game In Python
Simple, number guessing game is an approach to deal with simple programming skills to the beginners python programmer. In this blog, we...
Roshan Gyawali
2 min read


Fahrenheit to Celsius, a simple converter
We start with writing the general theory - the rule of conversion: Celsius = (Fahrenheit- 32) * 5/9 image recourse:...
Sana Omar
1 min read
'Guess the number' game.
'Guess the number' is a simple game in which the user is asked to guess a random number between 1 and 100, and if that number matches...
Abhishek Tuladhar
2 min read
Count character occurrences in a given word, phase or sentence
Here we will learn how to write a program in Python which prints the number of occurrences of each character in a string. There are...
Tahani Reesh
2 min read
Roman numbers to decimal converter tool with Python
This article explains how we can build a tool than helps converting a Roman number to its equivalent decimal representation. Lets first...
Abdi Tolesa
1 min read
Simple BMI calculator using Python
Body mass index (BMI) is a measure of body fat based on height and weight that applies to adult men and women. It is calculated using a...
Abhishek Tuladhar
2 min read


Inverse of a Matrix using Numpy
The inverse of a matrix is just a reciprocal of the matrix as we do in normal arithmetic for a single number which is used to solve the...
Arpan Sapkota
1 min read


Fahrenheit to Celsius Conversion
For the conversion of temperature from Fahrenheit to Celsius first thing we are going to do is to ask the user for the temperature in...
Arpan Sapkota
1 min read
Rolling a Dice Randomly
Hello everyone, today we are gonna roll a dice randomly in several ways. First of all, we need to import randint from random package to...
Sana Omar
2 min read