Check if div element with class name exists in JavaScript

By Faruque Ahamed Mollick

In this tutorial, we are going to check if div element with a specific class name exists or not in JavaScript. The JavaScript program we are going to write for the browser will abl.... Read More

How to check if a string is a valid identifier or not in Python

By Rashi Singh

In this tutorial, we will learn how to check if the given string is a valid identifier or not in Python with some easy examples. We can check for the same in many ways, some of whi.... Read More

File Truncate() Method In Python

By Akanksha Sharma

In this tutorial, we will learn file truncate() method in Python with an example. File truncate() is a very efficient method. First of all, it is called a method because it include.... Read More

Create a custom activation function in Tensorflow

By Sushant Shaw

Hey there everyone, today we are going to learn, how we can create a custom activation function in TensorFlow Python library. Before trying to create a custom activation function, .... Read More

Ceiling of a number in Python

By Rudresh

In this tutorial, we will learn how to find Ceiling of a number in Python. Python comes with a module named math, which provides different methods that make our task of programming.... Read More

Uploading files using Dropbox-API in Python

By Snigdha Ranjith

This post is all about how to upload files to Dropbox using Dropbox-API in Python. Dropbox is a cloud storage service. It is free and a basic Dropbox account has 2GB of storage spa.... Read More

How to call an external command from Python

By Vimal Pandey

In this tutorial post, we are going to learn how to call an external command from Python. External commands are those command which we run on our command prompt in windows. Example.... Read More

__name__ in Python

By Vimal Pandey

As we know that Python does not have a main() function like C and C++. When the interpreter runs the program, code at level 0 indentation(very first line) starts executing. Before .... Read More

Related Posts