Get the current URL in Selenium web driver Python

By Varun Bhattacharya

Hello programmers, in this tutorial we will see how to get the current URL visited in the Selenium web driver in Python. Selenium is used for machine controlling web browsers. Sele.... Read More

Save and load cookies in Python with Selenium Web Driver

By Varun Bhattacharya

Hello programmers, in this tutorial we will see how to save and load the cookies using the selenium web driver in Python. Cookies are small files with very small pieces of data whi.... Read More

How to fill Array using fill() function in C++

By Udaya sri Pothula

In this tutorial, we will be learning about how to fill an array in C++ using the fill function. Basically, we just traverse the whole array and we mark each array index with the v.... Read More

Count the number of words in a PDF file in Python

By Sumit Chhirush

Hello programmers, in this tutorial, we will learn how to count the number of words in a PDF file in Python. For counting the numbers of words in a PDF, we are using the PyPDF2 mod.... Read More

Control mouse with Python Program

By Rudresh

In this tutorial, we will learn how to automate our mouse movements using Python code. Python provides us with a module pyautogui which has many functions which can help us to auto.... Read More

Python program to find perimeter of circle

By Rudresh

In this tutorial, we will learn how to find the perimeter/circumference of a circle in Python. The logic for this program is quite easy if you know the formula to calculate the per.... Read More

Complex numbers in Python

By Priya Bhowmick

Complex numbers are the numbers that contain a real part and a complex part, for example ‘2+3j’. We can use complex numbers in python using the ‘cmath’ modu.... Read More

Convert tuples into list in Python

By Varun Bhattacharya

Hello programmers, in this tutorial we will see how to convert a tuple into a list in Python. A group of objects stored in a single variable and immutable is known as a Tuple in Py.... Read More