Posts from Python

How to return value from user-defined functions in Python

By Priya Bhowmick

In this tutorial, we will discuss how to return a value from a user-defined function in Python. The return value of the user-defined function We have two types of functions: void f.... Read More

Find min and max value in a heterogeneous list in Python

By Priya Bhowmick

Today we will discuss how to find the minimum or maximum value in a heterogeneous list. A heterogeneous list is one that contains heterogeneous items( items with arbitrary data typ.... Read More

Backward Iteration in Python

By Varun Bhattacharya

Hello programmers, in this tutorial we will see how to iterate backward in a list in Python. In Python, there are many ways in which looping can be performed. Generally, looping fo.... Read More

numpy.char.find() function for string operations in Python

By Priya Bhowmick

The numpy.core.defchararray.find() function is used to return the lowest index for the substring ‘sub’ i.e found in each component of the string in the specified range..... Read More

Maximize or Minimize a browser window using Selenium Python

By Varun Bhattacharya

Hello programmers, in this tutorial we will see how to maximize or minimize a browser window using Selenium Python. Selenium is a tool that is used in the automation of browsers. T.... Read More

Linear algebra using numpy in Python

By Priya Bhowmick

The Numpy library in Python has a lot of built-in functions to implement linear algebra over any Numpy array or vector. These functions help to perform complex algebraic operations.... Read More

any() and all() in Python

By Priya Bhowmick

Today we will discuss two functions in Python, ‘any’ and ‘all’ and their different examples. Python provides two built-in functions ‘any()’ and .... Read More

What is close() and quit() commands in Selenium Webdriver?

By Priya Bhowmick

When we work with Selenium Webdriver multiple browsers with multiple tabs open up. In order to close these tabs, we have two different web driver commands, close() and quit(). We w.... Read More

Related Posts