Unicode() and encode() function in Python with examples

By Chaithanya Pranav Sai

In this tutorial, we are going to learn about what is Unicode strings and how to use encode() function for error handling in Python and look after some examples. Description of Uni.... Read More

Map, Filter, Reduce in JavaScript Explained

By Siddharth Saurav

Hello programmers, In this article, you will learn about JavaScript array methods that were introduced in ES5. These are map(), filter(), reduce(). After the introduction of these .... Read More

Geometric transformations of Image in Python

By Aditi Deo

Geometric transformations of images are used to transform the image by changing its size, position or orientation. It has many applications in the fields of Machine Learning and Im.... Read More

Usage of module.exports in Node.js

By Siddharth Saurav

Hello programmers. In this article, you will learn about the purpose and usage of module.exports in Node.js. module.exports is actually a property of the module object. It helps to.... Read More

Upgrade all Python packages with pip at once

By Sumit Chhirush

In this tutorial, we will learn how to upgrade all Python packages with pip at once. There are multiple ways to do so. But here we will try to pick one and the easiest way to updat.... Read More

Nested List in Python

By Aditi Deo

In this tutorial, we will understand how to implement a nested List in Python. Before that let us understand list in Python. List in Python is a data type that can store multiple i.... Read More

Copy a list to another so that it does not change values when I modify the first list in Python

By Sumit Chhirush

In this tutorial, we will learn how to Copy a list to another so that it does not change values when I modify the first list in Python. list1=["apple","banana","grapes","mango","ch.... Read More

How to close the browser window at the end of a Selenium test program

By Sumit Chhirush

In this tutorial, we are going to learn how to close the browser window at the end of a Selenium test program. Selenium: Selenium is a Python library through which we can open and .... Read More

Related Posts