Posts from Python

The Sequential model in Keras in Python

By Harini R

In this tutorial, we will see the sequential model in Keras and how to use this to build a deep learning model in Python. An overview of this post: What is Keras? What is a Sequent.... Read More

Minimum operation to make all elements equal in Python

By Suyash pratap Singh

In this tutorial, we will learn about how to reduce the operation to make all elements equal in Python. Take an array with the n positive integers number. we’d like a minim.... Read More

How to use the bin() function in Python

By Siddhant Chouhan

In this post, we are going to learn how to use bin() function in Python. This method accepts an integer and will return a binary-equivalent string of the integer you had given. You.... Read More

Birthday Paradox program in Python

By Vamsi Krishna

In this tutorial, we will be seeing about The Birthday Paradox, it’s explanation, and its implementation in Python. So, what is the Birthday paradox in the first place? Among.... Read More

Plotting mathematical expression using matplotlib in Python

By Vineet Raj

In this article, we are going to learn to plot basic equations in Python. This article also contains a few different examples for better understanding, and then I will provide the .... Read More

numpy.where() in Python with examples

By Suyash pratap Singh

In this article, you will learn how numpy.where() method works with examples. The number where () depends on the function element returns either x or y from array_like objects. Whe.... Read More

How to Copy a dictionary in Python

By Anmol Tripathi

In this tutorial, we are going to understand how to copy a dictionary in Python. We can copy all the contents of one dictionary to another dictionary with the help of copy() method.... Read More

Implementation of Bucket sort in Python

By Satyam Chauhan

Hi, in this tutorial we are going to learn how to implement bucket sort using Python. Bucket sort is mainly useful when data is uniformly distributed over a range. This sorting tec.... Read More