Index Caesar Cipher in Python

By ZAKIR ALI

In this tutorial, we’ll learn about data security using Index Caesar Cipher in Python. It is an encryption technique method which is the earliest and simplest one. In this method.... Read More

Tensorflow Placeholders in Python

By Abuzer Malvi

Tensorflow placeholder() as the name suggests creates a placeholder for a tensor that will be fed later. In simple words, it allocates a block of memory for future use which allows.... Read More

Python and the Principle of Least Astonishment

By Mallika Gupta

In this tutorial post, we will learn about what actually Principle of Least Astonishment (POLA) is in Python. We would understand its general meaning and how we use this concept in.... Read More

Get index or position of a JavaScript array item

By Faruque Ahamed Mollick

Each javaScript array item has an index number that tells us the position of that item in that array. Here in this task, we are going to take a JavaScript array and then find the i.... Read More

YOLO Object Detection from image with OpenCV and Python

By Anubhav Aery

In this tutorial, we will be learning how to use Python and OpenCV in order to detect an object from an image with the help of the YOLO algorithm. We will be using PyCharm IDE to s.... Read More

Draw a frequency histogram in Python

By Abul Hassan

In this tutorial, we learn how to draw a frequency histogram in Python. Frequency histograms are used to represent the frequency or count of an outcome in a data set. Frequency his.... Read More

Univariate Linear Regression in Python

By Om Avhad

Hi! Today, we’ll be learning Univariate Linear Regression with Python. This is one of the most novice machine learning algorithms. Univariate Linear Regression is a statistic.... Read More

Deadlock in Java Multithreading

By Ayush R Sachan

Deadlock in Java multithreading is a special type of error. It occurs when two threads have circular dependency on a pair of synchronized objects. Consider the following case: Two.... Read More

Related Posts