

Simple Lambda Function Expressions in Python
When you utilize lambda as an anonymous function inside another function, the power of lambda is better demonstrated. Assume you have a...
Umme Rubaiyat Chowdhury
1 min read


Simple Python App: A BMI Calculator
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...
rubayat tithi
2 min read
Lambda Function in Python
Introduction Python Lambda Functions are ‘Anonymous function’ means that the function can be defined without a name. normal functions are...
Tahani Reesh
2 min read
Python Dictionaries
In this code segment, we will talk about python dictionaries. how they are created, accessing, adding, removing elements from them and...
Shawon Shariff
2 min read


Data Visualization with Matplotlib
Data visualization is the representation of data or information in a graph, chart, or other visual formats. It communicates the...
Gaurab Awal
2 min read


Python Concept for Data Science, Conditional Statements.
Conditional statements are also called decision-making statements. We use those statements while we want to execute a block of code when...
Alberta Johnson
3 min read


Python Concept for Data Science, Functions
Functions In python a function is a group of related statements that perform a specific task. Functions help break our program into...
Alberta Johnson
2 min read
Python Concepts for Data Science: Lists
One of the most common data structures that we use in Python is lists and we use this data structure in almost every project that we make...
ekow.a.indome
1 min read
Regular Expressions in Python
A RegEx, or Regular Expression, is a sequence of characters that forms a search pattern. And it can be used to check if the string...
Nargiz Huseynova
2 min read


Python Regular Expressions
The regular expressions can be defined as the sequence of characters which are used to search for a pattern in a string. The module re...
Arpan Sapkota
2 min read
Reading CSV Files
CSV stands for "Comma Separated Values" is a simple file format which is used commonly for data science.Each line is a data record which...
Rohit Roy
2 min read


Python Functions
In Python, a function is a named sequence of statements that belong together. Their primary purpose is to help us organize programs into...
Arpan Sapkota
2 min read


Python Concepts for Data Science: Inheritance
Inheritance generally means to inherit the characters from another things(can be person, object, class or anything) As in the diagram,...
074bex435.ranjan
1 min read
Python Concepts for Data Science: *args and **kwargs
Function is an inevitable part in programming which reduces the redundant task to be performed. If the number of variables to be passed...
074bex435.ranjan
1 min read


Simple Review of List Comprehension
The list comprehension feature is one of the most effective methods among several list creating methods provided by python. List...
Roshan Gyawali
2 min read
List comprehension in Python
List comprehension is the method to create a new list from the value of an existing list. Generally, list comprehension is more compact...
Gaurab Awal
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...
Sana Omar
1 min read


Python Concepts: args & kwargs
Python concepts; *args & **kwargs
Sana Omar
2 min read
Python concept for Data Science: Python Date & Time
Date & Time is an important form of structured data in many different fields, such as finance, and economics. We will use the date class...
Eman Mahmoud
1 min read


Convert Roman numbers to Decimals
Python is the key code of solving programming problems, Well, Python is the magical world of programming. you can do anything with it,...
sara.al.najar
1 min read
Python Try Except
While executing a python program, one may encounter several errors and exceptions. Errors are the problem that will cause the program...
Abhishek Tuladhar
2 min read


python concepts for Data Science " Lambda function "
In this blog we will explain lambda function so what is the lambda function? Python Lambda function is known as the anonymous function...
Alaa Mohamed
2 min read
Python Concepts for Data Science: List Comprehension
List comprehension is an elegant way to define and create lists based on existing lists. It is generally more compact and faster than...
Abhishek Tuladhar
2 min read
Tuples
Python tuples are a data structure that store an ordered sequence of values. Tuples are immutable. This means you cannot change the...
fredy chimire
2 min read