Posts from Python

Remove duplicate words from a string in Python

By Sumit Chhirush

In this tutorial, we are going to learn about how to Remove duplicate words from a string in Python along with some examples. What are duplicate words/strings in a string? Duplicat.... Read More

Remove all list items from a list that exist in another list in Python

By Aditi Deo

Imagine an eCommerce website that stores a list of products in its database. Now consider another list in the same database that contains products under the category of sports. Thi.... Read More

BEST PYTHON TOOLS FOR DATA SCIENCE

BEST PYTHON TOOLS FOR DATA SCIENCE

By Sai Priya | May 18, 2022

Python is one of the most widely used programming languages for data science tasks, and both data scientists and software developers use it. Hence, it is necessary to learn Python in depth from a professional data science course. In order to predict results, computerized tasks, build the foundation processes, and provide business intelligence insights, it […] Read More

How to change or modify column width size in Openpyxl

By Varsha Neelamma

Microsoft Excel is one of the most widely used tools today. Most software projects intend to use it for organizing data. Thus it becomes necessary to have easy ways to access Excel.... Read More

Convert base64 string to Image in Python

By Aditi Deo

Have you ever wondered how Images are being stored and transferred without being corrupted? Sometimes, when we open the images in their raw format, we observe that they are encoded.... Read More

The return statement in a Python function

By Sumit Chhirush

In this tutorial, we are going to learn about return statements in Python along with some examples. Basically, when we call a function, to get the result of that function we use a .... Read More

Terrorism detection using Logistic Regression Algorithm in Python

By Sanskar

So, here we’ll be looking at a Python implementation of the logistic regression algorithm. We will be using the dataset available below to implement our algorithm. The datase.... Read More

Terrorism classification using XGB framework

By Sanskar

XGB or XGBoost stands for eXtreme Gradient Boosting. It tries to predict models using a gradient boosting framework. A large number of developers contribute to the XGB open-source..... Read More

Related Posts