Posts by Raghav Jha

Author Biographical Info: Not available

All types of loops in Python with examples

By Raghav Jha

In this tutorial, we will learn about all types of loops in Python. In Python, there are three types of loops to handle the looping requirement. if and else statement 1. If stateme.... Read More

Ujson | Python

By Raghav Jha

In this tutorial, we will learn about UJSON in Python. Before learning about UJSON, we have to understand the concept of  JSON. JSON JSON is a format in which you can transfer the.... Read More

Get the position of max value in a list in Python

By Raghav Jha

In this tutorial, we will write the program to find the position of the maximum value in a list in Python. Before writing the code, we will discuss the argument and function which .... Read More

How to find the system time in Python

By Raghav Jha

In this tutorial, we will learn about how to find the system time i.e the current time of the system using the Python modules. There are several ways and module to find the current.... Read More

numpy.squeeze() in Python

By Raghav Jha

In this tutorial, we are going to learn one of the important functions i.e squeeze() of the numpy module in Python. numpy.squeeze() function in Python numpy.squeeze() function is u.... Read More

How to find roots of polynomial in Python

By Raghav Jha

In this article, we are going to write the code to find the roots of the Polynomial in Python. Before that, we will learn some basic theories about Polynomial which will help us to.... Read More

Related Posts