Posts by Jitendra Kumar

Author Biographical Info: Not available

Standard Exceptions In Python

By Jitendra Kumar

In this tutorial, we will learn the Standard Exceptions in Python. Basically here we learn about the types of Errors that have been rising due to our improper code. If we understan.... Read More

Calculating With Dictionaries in Python

By Jitendra Kumar

In this tutorial, we will learn how to perform various calculations (e.g., minimum value, maximum value, sorting, etc.) and operations in dictionary data. When we have a dictionary.... 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

Break and Continue Statement in Python

By Jitendra Kumar

In this tutorial, we will learn about the Break and Continue statement in Python. These are used in the Python language during looping that is while and for loop. Basically these t.... Read More

Finding Commonalities in Two Dictionaries In Python

By Jitendra Kumar

In this tutorial, we have two dictionaries and want to find out what they might have in common (like the same keys, same values, etc.). Basically there are some similarities betwee.... Read More

Tkinter pack() , grid() Method In Python

By Jitendra Kumar

In this tutorial, we will discuss some basic functions that are used in GUI (Graphical User Interfaces) in Python using Tkinter. Tkinter is the standard GUI library for Python. In .... Read More

Augmented assignment in Python

By Jitendra Kumar

In this tutorial, we will learn about the AUGMENTED ASSIGNMENT in Python language. Basically when we discuss the assignment operator in Python that is nothing but an equal (=) sig.... Read More