Node.js encrypt-decrypt-it module and its usage

By Faruque Ahamed Mollick

Here I am going to introduce to a useful Node.js module that is the encrypt-decrypt-it module. With this module, you can encrypt a data or string and using the same module, you can.... Read More

Calling a function from another function in Python

By Jagannath@cr7

In this tutorial, we will learn how to call a function from another function in Python. Let’s focus on the definition of a function. Certainly, a function consists of a set o.... Read More

Python program to find strong numbers in a list

By Shakshi Parekh

In this tutorial, we will learn how to find strong numbers in a list in Python. Basically, Python is a high programming level language. A list is a data type in python which consis.... Read More

Call Python function from another Python file

Call Python function from another Python file

By Shalini Gupta | November 20, 2019

Hello friends, today we will learn how to call a function of a different Python file. In Python, you can use the functions of other Python files by using the import keyword. I will also tell you how you can import a single function instead of the entire file. Call Python function from another Python […] Read More

How to check if an item exists in a list in Python

By Jagannath@cr7

In this tutorial, we will learn how to check if an item exists in a list in Python. As we know, a list is a collection of different elements. Certainly, there would be a requiremen.... Read More

Activity Selection Problem using Greedy-method in Java

By Sanskar Dwivedi

There are following  steps we will be taking to solve the activity selection problem using Greedy method in Java, 1: Sort the activities in ascending order according to their fini.... Read More

Conversion of video to gif using Python

By Nikhil Govindaraju

Hello, in this tutorial we will learn how to convert video to gif in Python. For that, we use python. Gifs are basically the compressed format of the video and they are used in pla.... Read More

L2 and L1 as Regularization

By Nilesh and Sapna

In this lesson, you are going to learn what L2 and L1 functions are as Regularization also what regularization is actually. And also how it helps to prevent from overfitting. What .... Read More

Related Posts