Python Programming

Python NoneType

In this tutorial we are going to discuss about Python NoneType. Before we start discussion on NoneType let us first see what is an object. In any programming language preliminary data types are int, float, char etc. and we can create a class by mixing different data types together and the instances of these classes …

Python NoneType Read More »

Python Global Variables

In this tutorial we will be discussing about Python global variables. A variable which is declared outside of any function i.e. in the global space is known as global variable. Global variables are useful when multiple functions need to use the same data. In C, C++ we can use and modify global variables directly in …

Python Global Variables Read More »