Detect Browser in JavaScript with Platform.js

By Faruque Ahamed Mollick

In this article, I am going to tell you one of the easiest ways of detecting the browser in JavaScript. To do this task, we are going to use the Platform.js JavaScript library. Usi.... Read More

Difference between type() and isinstance()

By Bhargava Ram Khythepalli

In this article, we will discuss the Difference between type() and isinstance() in Python. The type() and isinstance() are builtin methods in Python. The type() method is used to r.... Read More

Hough Circle Transform In Python – Detect Circle

By Rahul Singh

In this tutorial, we will learn how to detect a circle in the Image in Python. After this tutorial, You will be able to use some important libraries and methods which will help you.... Read More

Define a Function in JavaScript

By Faruque Ahamed Mollick

Functions in JavaScript are custom code written by programmers that are reusable and can prevent you from writing the same code again and again. All it needs is just call the funct.... Read More

Tokenization in TextBlob in Python

By Gaurav Babbar

In this article, we will learn about Tokenization in TextBlob in Python. First, let’s understand what Tokenization is. Tokenization refers to the splitting of a paragraph int.... Read More

What is tf.data.Dataset.from_generator in TensorFlow?

By Salonii Tari

Hotshot TensorFlow is here! In this article, we learn what the from_generator API does exactly in Python TensorFlow. 🙂 The Star of the day: from_generator in TensorFlow The tf.d.... Read More

Quine in Python

By Ranjeet V

Hey everyone, this is an interesting tutorial about quine in Python. First, let’s try to understand what is quine. What is Quine? Quine is a program that does not take any in.... Read More

Print nth iteration of Lucas Sequence in Python

By Ranjeet V

We all know about the Fibonacci sequence. It is a sequence where any term is the sum of the previous two terms. The Lucas sequence is the same but with different starting values. W.... Read More

Related Posts