Roman to Decimal Number Conversion with Python
General Introduction Roman numerals are a numeral system that originated in ancient rome. Numbers in this system are represented by...
Kouamé Maïzan Alain Serge Kossonou
3 min read
Acronym generator from long words
In this tutorial, you will learn how to write acronym generator using python. What is an acronym ? An acronym is a word formed from the...
Jihed 503
1 min read
How to write a program that generates passwords?
As part of the Data Science training program, we were asked to choose a project to be carried out followed by a project of their choice....
Bah Alain Sei
1 min read
Explanation of Functions in Python
Functions in python are block of code which are only used when they are called and it also helps in reusability of code. Functions are...
Hamza Khalid
1 min read


Converting numbers into words
I started by defining a function which enable the user to enter input values of number needed to be converted into words #Defining a...
fredy chimire
1 min read
Simple Python app: Email splitter for separating the username and domain name
In my last Flask app, I needed to create a unique directory in /tmp directory for each user to perform some operations. In this case, as...
TEMFACK DERICK
1 min read


Body Mass Index (BMI) calculator
Body Mass Index(BMI) is a simple calculation using a person’s height and weight. The formula is BMI = kg/m2 where kg is a person’s weight...
fredy chimire
1 min read
Guess The Number Game
Our games will randomly generate a number between 0 and 30 and the player has to guess the number. If the number entered by the player is...
asma kirli
2 min read
BODY MASS INDEX (BMI) CALCULATOR
Body Mass Index is a simple calculation using a person's height and weight. The formula is BMI = kg/m2 where kg is a person's weight in...
asma kirli
2 min read


Rock-Paper-Scissors Game
In this blog, we will create a program for a rock, paper, and scissors game that consists of a human player and a computer. So to do that...
abdelrahman.shaban7000
2 min read


Read a List as input and sort it with Python
In this post, I'm going to demonstrate reading a giving list from the user and sort it using Python. First of all, we will start with...
tasnim assali
1 min read
Count character occurrences
In this post, I aim to represent how to get the number of occurrences of a character in a given word, phrase, or sentence using Python....
tasnim assali
1 min read


Dice Rolling Simulator
As the name of the program suggests, we will be imitating a rolling dice, will generate a random number each dice the program runs, and...
mohamed amine brahmi
1 min read


Email splitter for separating the username and domain name.
in this python mini application i will try to check first if the email given by the use contains '@' so it is may be a real email. email...
mohamed amine brahmi
1 min read


Body Mass Index (BMI) calculator
The body mass index (BMI) is used to estimate the ideal weight according to height. Its calculation is simple: it corresponds to the...
sefako dorlote djaman
1 min read


Results report
You have given a test to the students in your class. Now, you want to display their results. The first thing you need to do is to know...
sefako dorlote djaman
1 min read


Python Program to Convert Kilometers to Miles
In this blog, we're going to discover ways to convert kilometers to miles and show it. To apprehend this situation, you have to have...
Shirajam Munir Fahad
1 min read


Palindrome Checker
This is my task # 02 for the first assignment which is not from the task list uploaded in Google Classroom. Program Description: User...
Hamza Khalid
1 min read


Email Splitter for Separating Username from Domain Name
This is my task # 01 for the first assignment from the task list uploaded in Google Classroom. My Code Description: - First the user will...
Hamza Khalid
1 min read


Counting Character Occurrences in a Phrase or Sentence using Python
In this post we will deal with strings and character specifically we will count certain character occurrences in a given word or sentence...
abdelrahman.shaban7000
2 min read


BMI Calculator
The following is a simple BMI Calculator code that determines the BMI of a user. The code requires one to input the weight (Kgs) and...
Ntandoyenkosi Matshisela
1 min read


Password Generator
The following code generates a password for a first time user or one who has forgotten a password. It takes the first name of a User, the...
Ntandoyenkosi Matshisela
1 min read


Strong Password Generator using Python
Generating a strong password is very much important in today's world. It is peculiar to secure our digital privacy from hackers and being...
Aayushma Pant
2 min read


Median of sorted Array using python
in this application we pass to our function unsorted list and it will return the median of the list steps: 1 - First we save the length...
Abdelrhman Gaber
1 min read