Posts from Python

Introduction to NLTK: Tokenization, Stemming, Lemmatization, POS Tagging

By Kunal Gupta

Hello everyone, In this tutorial, we’ll be learning about Natural Language Toolkit(NLTK) which is the most popular, open-source and a complete Python library for Natural Lang.... Read More

Mathematical Functions in Python

By Jitendra Kumar

In this tutorial, we will learn all mathematical functions present in Python and how you can use them in the program. In python, a lot of mathematical functions are present and we .... Read More

Most Frequently Occurring Items in a list in Python

By Jitendra Kumar

In this tutorial, we will discuss sequences means we find the most occurring items in the given sequence, the sequence may be a tuple, string, list, etc. Basically this tutorial le.... Read More

Changing Theme of a Tkinter GUI

By Kunal Gupta

Hello everyone, In this tutorial, we will learn about how to change the theme of Tkinter GUI. We create a GUI application using Tkinter but we don’t know how to change those .... Read More

Adam Optimizer in Deep Learning

By Sai Ram

Hey folks, let’s focus on another interesting topic that is, Adam Optimizer in Deep Learning. Before we proceed let’s take an intro. Optimizer Algorithms in Deep Learni.... Read More

Python program to find the frequency of a particular word in a cell in an excel table

By Mriganka

Welcome everyone, This post is a treat for those, who wish to find the frequency of a particular word in a cell in an excel table, the code for it is very basic and simple. Therefo.... Read More

Circular Prime in Python

By Mriganka

Hello everyone, if you are looking for a program to determine or check if a number is a circular prime or not in Python then you are in the right place. How to check if a number is.... Read More

Finding first empty column in an excel sheet using Python

By Mriganka

In this tutorial, we will see how to find the first empty column in an excel file in Python using xlrd. I have designed this program specifically to guide you through, finding an e.... Read More

Related Posts