Posts from Python

Python Variables Naming Rules

By Rashi Singh

In this tutorial, we would learn about Python variables – their use and naming rules. What are the variables? Variables are considered to be identifiers having a physical mem.... Read More

Python program to solve Quadratic equation

By Sai Prasanna

In this tutorial, we are going to learn how to solve the quadratic equation program in Python. The standard form of the quadratic equation is ax2+bx+c=0. Where a, b,c are real numb.... Read More

Deleting a Variable in Python

By Nataraj Maddala

In this tutorial, we are going to learn how to delete a variable in Python. First of all, let’s get an idea about variables. Variables are the names given to the computer mem.... Read More

How to get the last word from a string in Python?

By Sourav Dutta

In this tutorial, I’ll discuss how you can get the last word from a given string in Python. It’s very easy to get the last word from a given string in Python. To get th.... Read More

Python JSON Encoder and Decoder

By Sourav Dutta

In this tutorial, we will learn Python JSON Encoder and Decoder. JSON stands for JavaScript Object Notation, it is basically used for storing information easily in an organized man.... Read More

Check if a directory is empty or not in Python

By Sachin Verma

Hi guys, today we will be going to learn how to check if a directory is empty or not in Python. So what is this directory? A directory is basically an organizational unit used to o.... Read More

Check if a given string is NaN in Python

By Sachin Verma

Hi guys, today we will learn about NaN. In addition, we will learn about checking whether a given string is a NaN in Python. You will be wondering what’s this NaN. So let me .... Read More

Android application using Kivy in Python

By Snigdha Ranjith

In this tutorial, we’ll learn how to make a simple Android Application using Kivy in Python. If you, like me, find it difficult to make an app in Java, using Kivy is your bes.... Read More

Related Posts