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

2022: The year of hybrid work

Remote work was once considered a luxury to many, but in 2020, it became a necessity for a large portion of the workforce, as the scary and unknown COVID-19 virus sickened and even took the lives of so many people around the world.  Some workers were able to thrive in a remote setting, while others felt isolated and struggled to keep up a balance between their work and home lives. Last year saw the availability of life-saving vaccines, so companies were able to start having the conversation about what to do next. Should they keep everyone remote? Should they go back to working in the office full time? Or should they do something in between? Enter hybrid work, which offers a mix of the two. A Fall 2021 study conducted by Google revealed that over 75% of survey respondents expect hybrid work to become a standard practice within their organization within the next three years.  Thus, two years after the world abruptly shifted to widespread adoption of remote work, we are declaring 20