TEMFACK DERICK
1 min read
Lambda expression in python and its usage in data science
Python, the famous programming language created by Guido van Rossum is a muli-paradigm language. It supports Object Oriented programming,...
Sana Omar
1 min read
Python Concepts: pickling and unpickling
Pickling is the process of serializing an object hierarchy into a byte stream. Unlike JSON or XDR and other formats, pickling is Python's...
abdelrahman.shaban7000
2 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...
Umme Rubaiyat Chowdhury
1 min read
Body Mass Index Calculator using Python
The easiest way to Code BMI Calculator in Python
ashioyajotham
1 min read
Character occurrence
Think of the len() function, but this method has a much scope enabling you to use of bigger strings or character occurrences. We use...
ayenadykyaw1
2 min read
Character Counter using Python
In this post, you can learn how to count the number of occurrences of each character in a word or phrase or a sentence. For example: The...
Kala Maya Sanyasi
2 min read
BMI Calculator using Python
Body mass index (BMI) is the measure of the body fats based on height and weight of a person. High BMI can indicate high body fatness and...
Kala Maya Sanyasi
2 min read
Dice Game Simulation with Python
This is a simple python code for rolling a six sided dice. The program simulates two players and declares the winner to the player who...
Kouamé Maïzan Alain Serge Kossonou
3 min read
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...
Hamza Khalid
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...