Skip to main content

Python Declare Variable Without Value Gorakh Gupta The Crazy Programmer

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.

num1 = int ( input ( " Enter Number 1 : " ) )
num2 = int ( input( " Enter Number 2 : " ) )

print ( f " Sum is { num1 + num2 } " )

Output:

PS C : \ Users \ ASUS \ Desktop \ TheCrazyProgrammer Work > python -u " c : \ Users \ ASUS \ Desktop \ TheCrazyProgrammer Work \ test.py "
Enter Number 1 : 32
Enter Number 2 : 5
Sum is 37

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.

val

for i in range ( 10 ) :
    if ( val == None and i == 5 ) :
        print ( " I am in the if Block " )
    print ( i )

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

Output:

PS C : \ Users \ ASUS \ Desktop \ TheCrazyProgrammer Work > python -u " c : \ Users \ ASUS \ Desktop \ TheCrazyProgrammer Work \ test.py "
Traceback ( most recent call last ) :
  File " c : \ Users \ ASUS \ Desktop \ TheCrazyProgrammer Work \ test.py " , line 47 , in < module >
    val
NameError : name ' val ' is not defined

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.

val = None

for i in range ( 10 ) :
    if ( val == None and i == 5 ) : 
        print( " I am in the if Block " )
    print ( i )

Output:

PS C : \ Users \ ASUS \ Desktop \ TheCrazyProgrammer Work > python - u " c : \ Users \ ASUS \ Desktop \ TheCrazyProgrammer Work \ test.py "
0
1
2
3
4
I am in the if Block
5
6
7
8
9

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.

The post Python Declare Variable Without Value appeared first on The Crazy Programmer.



from The Crazy Programmer https://ift.tt/7ySszFQ

Comments

Popular posts from this blog

Difference between Web Designer and Web Developer Neeraj Mishra The Crazy Programmer

Have you ever wondered about the distinctions between web developers’ and web designers’ duties and obligations? You’re not alone! Many people have trouble distinguishing between these two. Although they collaborate to publish new websites on the internet, web developers and web designers play very different roles. To put these job possibilities into perspective, consider the construction of a house. To create a vision for the house, including the visual components, the space planning and layout, the materials, and the overall appearance and sense of the space, you need an architect. That said, to translate an idea into a building, you need construction professionals to take those architectural drawings and put them into practice. Image Source In a similar vein, web development and design work together to create websites. Let’s examine the major responsibilities and distinctions between web developers and web designers. Let’s get going, shall we? What Does a Web Designer Do?...

A guide to data integration tools

CData Software is a leader in data access and connectivity solutions. It specializes in the development of data drivers and data access technologies for real-time access to online or on-premise applications, databases and web APIs. The company is focused on bringing data connectivity capabilities natively into tools organizations already use. It also features ETL/ELT solutions, enterprise connectors, and data visualization. Matillion ’s data transformation software empowers customers to extract data from a wide number of sources, load it into their chosen cloud data warehouse (CDW) and transform that data from its siloed source state, into analytics-ready insights – prepared for advanced analytics, machine learning, and artificial intelligence use cases. Only Matillion is purpose-built for Snowflake, Amazon Redshift, Google BigQuery, and Microsoft Azure, enabling businesses to achieve new levels of simplicity, speed, scale, and savings. Trusted by companies of all sizes to meet...

Olive and NTT DATA Join Forces to Accelerate the Global Development and Deployment of AI Solutions

U.S.A., March 14, 2021 — Olive , the automation company creating the Internet of Healthcare, today announced an alliance with NTT DATA , a global digital business and IT services leader. The collaboration will fast track the creation of new healthcare solutions to transform the health experience for humans — both in the traditional healthcare setting and at home. As a member of Olive’s Deploy, Develop and Distribute Partnership Programs , NTT DATA is leveraging Olive’s open platform to innovate, build and distribute solutions to Olive’s customers, which include some of the country’s largest health providers. Olive and NTT DATA will co-develop new Loops — applications that work on Olive’s platform to provide humans real-time intelligence — and new machine learning and robotic process automation (RPA) models. NTT DATA and Olive will devote an early focus to enabling efficiencies in supply chain and IT, with other disciplines to follow. “This is an exciting period of growth at Olive, so...