Posts from Python

Malaria Image prediction in Python using Machine Learning

By Anish Banerjee

In this tutorial, we will be classifying images of Malaria infected Cells. This dataset from Kaggle contains cell images of Malaria Infected cells and non-infected cells. To achiev.... Read More

How to find sentence similarity in Python?

By Sarbajit De

Here in this post, I am going to teach you how to compute sentence similarity with Python. But why do we need to find similarity between two sentences? The reason is that when we n.... Read More

How to create drop-down menu in Tkinter in Python

By Saumitra Deshpande

In this blog, we are going to see how we can create a drop-down menu in Python using Tkinter. The Dropdown Menu is mostly used while filling forms and providing multiple options to.... Read More

Find the parity of a number using Python

By Bhargava Ram Khythepalli

In this article, we discuss how to find the parity of the number using Python. Parity means a count of the number of 1’s in a binary value of a digit. Mainly, there are two t.... Read More

Polar contour plot in Matplotlib in Python

By Pavan Sai Koneru

In this article, you will how to create Polar Contour Plot using the matplotlib module in Python. matplotlib: The matplotlib module in Python is a visualizing module in Python used.... Read More

Scikit-learn accuracy score

By Deepanshu Dashora

Introduction: In machine learning models accuracy plays an important role. Accuracy is a mirror of the effectiveness of our model. Not even this accuracy tells the percentage of co.... Read More

Change the current working Directory in Python

By C.Surya Venkat

In this tutorial, we will learn about how to change the current working directory in Python with some easily understandable examples. When we are dealing with Python in some cases .... Read More

Count occurrence of character in file using Python

By Siddharth Shankar Debata

Today in this tutorial, we will get to know how to count the occurrence of a character in a text file using Python. Here we will take a text file ‘text.txt’ as the prog.... Read More

Related Posts