How to Use cv2.polylines in Python

By Rahul Singh

In this tutorial, you will learn how to draw shapes in Python using cv2.polylines() function of the cv2 module of the OpenCV library. Installing Required Libraries To complete this.... Read More

Removing first occurrence of character in a string using Python

By Siddharth Shankar Debata

In this tutorial, we will learn to remove the first occurrence of a character in a string using Python. So, the task is to delete the character in a string at its first occurrence..... Read More

Python winsound module

By Rahul Singh

In this tutorial, we will introduce you to the Winsound module and its basic functionalities in Python. After this tutorial, you will be able to play the default sound and music fi.... Read More

Create a simple GUI calculator using Tkinter in Python

By Saumitra Deshpande

In this blog, we are going to see how to make a simple calculator in Python using Tkinter. The calculator is a very basic need and we all use it almost every day. Having a calculat.... Read More

Python: Radio buttons in Tkinter

By Saumitra Deshpande

In this blog, we are going to see how we can use the Tkinter library in Python to create radio buttons in a GUI. Radio buttons are used to provide options to the user through a GUI.... Read More

How to find all possible pairs with given sum in Python lists

By Aayush Dubey

In this tutorial, we will see how to find all possible pairs with a given sum in Python lists. Lists are similar to arrays in C++ and java but much easier to use. Lists are widely .... Read More

Feature Scaling in Machine Learning using Python

By Aayush Dubey

In this tutorial, we will see What is Feature scaling in Machine Learning? Why is it so important? How can we do feature scaling in Python? In Machine learning, the most important .... Read More

How to convert int to char in Java

By Shubham Loya

Today, in this tutorial, you will get to know how to convert int to char in Java. So you will learn how to convert int to char and see various methods to convert int to char in Jav.... Read More

Related Posts