Python Declare Variable Without Value

We know that in many languages like C, C++, Java, when we want to use any variable then first we have to declare that variable and after that, we can use that variable in our program.

The languages listed above are high-level languages that are compiled before it runs, but Python is a dynamically compiled language. In python, we don’t have to specify which type of variable we are going to use. Simply we have to write the name of a variable and we can use it as per our own like we can store an integer value or a string value in the same variable.

So the question comes, is it possible to declare a variable without value in python?

The answer is no, we cannot declare a variable without value in python. I will demonstrate an example to prove my point.

Let us see a basic addition of 2 numbers program in Python.

Output:

Here, we are directly using the variable without declaring anything previously, because as python is a dynamic language it allows variables to be created at run time.

Now, we are going to see an example in which we will not assign any value to the variable in python, and let’s see the output in that case.

When we run this program then we will get an error.

Output:

We got NameError which tells us that the name of the variable we have used in our program is not defined.

We have not defined any value of that variable so the interpreter is not able to recognize the variable and it throws an error.

Python Declare Variable Without Value

We are going to see a trick to initialize any variable without a value, actually, this is not a trick but a way to initialize a variable when we do not want any value to set up at declaration time.

We can do it by setting the value of the variable to None.

We will modify our previous code to that it will be executed successfully.

Output:

We can see that our program is executed successfully.

In python, we cannot declare a variable without any value because python is a dynamic language and it does not allow variable without value. In python it is not necessary to declare the datatype of the variable, we can directly use the variable in our programs.

Leave a Comment

Your email address will not be published. Required fields are marked *