Posts by Sumit Chhirush

Author Biographical Info: Not available

Login to a website automatically using Python

By Sumit Chhirush

Hello programmers, in this tutorial we will learn how to log in to a website using Python. This can be done with the help of the Selenium Python library. Selenium: Selenium is a Py.... 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

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

Take screenshot of any webpage (URL) using Python

By Sumit Chhirush

In this tutorial, we are going to learn how to take screenshots of any webpage (URL) using Python. we are going to take screenshots of any webpage(URL) using the Selenium python li.... Read More

How to open a URL in Python

By Sumit Chhirush

In this tutorial, we are going to learn how to open a URL in Python. Here we use the Python program to open the URL with the help of python libraries. There are many methods to ope.... Read More

Replace a character of a string by it’s index in Python

By Sumit Chhirush

In this tutorial, we are going to learn about how to replace a character of a string by its index in Python. For example, we have a string “python” and we have to replace a cha.... Read More

Detect offensive words in Python

By Sumit Chhirush

In this tutorial, we will learn how to Detect offensive words in Python. What are offensive words? Offensive words are irritating, angering, or annoying words. Examples: Arse, Bloo.... Read More

Related Posts