Posts from Python

Fetch real-time Cryptocurrency data using Python

By Varun Bhattacharya

Hello programmers, in this tutorial, we will learn how to fetch real-time cryptocurrency data using Python. A cryptocurrency is a unit of currency that uses cryptographic algorithm.... 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

Karatsuba algorithm for fast multiplication in Python

By Siddhant Chouhan

The Karatsuba Algorithm for fast multiplication is a Divide-and-Conquer approach, it has a slightly better Complexity of O(n1.58) over grade-school multiplication which has a compl.... Read More

Clone or Download Git repository using Python

By Varun Bhattacharya

Hello programmers, in this tutorial we will see how to clone or download a git repository using python. Making a clone of a git repository can be easy in python using a famous modu.... Read More

How to change voice in pyttsx3 in Python – Male to female

By Varun Bhattacharya

Hello programmers, we will see how to change voice to text using pyttsx3 in Python in this tutorial. The library pyttsx3 is a text-to-speech conversion library in Python. This libr.... 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

How to access index in for loop in Python

By Varun Bhattacharya

Hello programmers, we will see how to access index values in a for loop in Python in this tutorial. Accessing index values and their corresponding values can be helpful in various .... Read More

How to remove HTML tags from a string in Python

By Aditi Deo

Sometimes, when we try to store a string in the database, it gets stored along with the HTML tags. But, certain websites need to render the strings in their raw format without any .... Read More

Related Posts