Posts from Python

Tkinter tkFileDialog module in Python

By D Ajay

Hello coders, this tutorial deals with a program to open and save a file using Tkinter. But if you don’t know the basics of the Tkinter module then please refer this link Int.... Read More

Statistical Functions in NumPy Python

By Rudresh

In this tutorial, we will learn about the statistical functions of numpy in Python. We all know that the numpy module holds the functionalities to process arrays.  Numpy has many .... Read More

Dummy classifiers using sklearn library in Python

By Shubham Kumar Singh

Fellow coders, in this tutorial we will learn about the dummy classifiers using the scikit-learn library in Python. Scikit-learn is a library in Python that provides a range of sup.... Read More

String maketrans() in Python

By Nimish Bahuguna

In this tutorial, we will learn about String maketrans() in Python and we will also learn how to use it with the help of various examples. About String maketrans() in Python The ma.... Read More

How to Reindex and Rename Pandas Dataframe in Python

By Shatakshi Bhatnagar

In this blog, we will learn how to re-index and rename a Pandas Dataframe in Python. After forming a Dataframe, naming the columns and giving an index to the records, one might wan.... Read More

groups() method in Regular Expression in Python

By Nimish Bahuguna

In this tutorial, we will learn about groups() method in Regular Expression in Python. We will learn what regular expressions are and how we can use them with the help of an exampl.... Read More

Generating jokes in Python with the help of APIs.

By Sharan

In this tutorial, we are going to learn how to interact with application programming interfaces in Python. Retrieving information from application programming interfaces or APIs is.... Read More

predict_proba for classification problem in Python

By Snigdha Ranjith

In this tutorial, we’ll see the function predict_proba for classification problem in Python. The main difference between predict_proba() and predict() methods is that predict.... Read More

Related Posts