Variables in Python

What is Variable?

A variable is nothing but a reserved memory location to store values. In other words a variable in a program gives data to the computer to work on.
Every value in Python has a datatype. Different data types in Python are Numbers, List, Tuple, Strings, Dictionary, etc. Variables can be declared by any name or even alphabets like a, aa, abc etc.


In this tutorial we will learn,

  • How to declare and use a variable
  • Re-declare a Variable
  • Concatenate Variables
  • Local & Global Variables
  • Delete a variable


  • How to declare and use a variable

    Let see an example. We will declare variable "a" and print it.
    a=100 
    print a
    
    The output of variable should be "100"

    Re-declare a Variable

    You can re-declare the variable even after you have declared it once.
    Here we have variable initialized to f=0.
    Later, we re-assign the variable f to value "guru99"
    Variables in Python

    Concatenate Variables

    Let's see whether you can concatenate different data types like string and number together. For example, we will concatenate "Guru" with number "99".
    Unlike Java, which concatenates number with string without declaring number as string, Python requires declaring the number as string otherwise it will show a TypeError
    Variables in Python
    Or undefined output as below -
    a="Guru"
    b = 99
    print a+b
    
    Once the integer is declared as string, it can concatenate both "Guru" + str("99")= "Guru99" in the output.
    a="Guru"
    b = 99
    print a+str(b)
    

    Local & Global Variables

    In Python when you want to use the same variable for rest of your program or module you declare it global variable, while if you want to use the variable in a specific function or method you use local variable.
    Let's understand this difference between local and global variable with the below program
    1. Variable "f" is global in scope and is assigned value 101 which is printed in output
    2. Variable f is again declared in function and assumes local scope. It is assigned value "I am learning Python." which is printed out as an output. This variable is different from the global variable "f" define earlier
    3. Once the function call is over, the local variable f is destroyed. At line 12, when we again, print the value of "f" is it displays the value of global variable f=101
    Variables in Python
    Using the keyword global, you can reference the a global variable inside a function
    1. Variable "f" is global in scope and is assigned value 101 which is printed in output
    2. Variable f is declared using the keyword global. This is NOT a local variable but the same global variable declared earlier. Hence when we print its value the output is 101
    3. We changed the value of "f" inside the function. Once the function call is over, the changed value of the variable "f" persists. At line 12, when we again, print the value of "f" is it displays the value "changing global variable"
    Variables in Python

    Delete a variable

    You can also delete variable using the command del "variable name"
    In the example below, we deleted variable f and when we proceed to print it, we get error "variable name is not defined" which means you have deleted the variable.
    Variables in Python

    Summary:

    • Variables are referred to "envelop" or "buckets" where information can be maintained and referenced. Like any other programming language Python also uses a variable to store the information.
    • Variables can be declared by any name or even alphabets like a, aa, abc etc.
    • Variables can be re-declared even after you have declared it them for once
    • In Python you cannot concatenate string with number directly, you need to declare them as a separate variable and thereafter you can concatenate number with string
    • Declare local variable when you want to use it for current function
    • Declare Global variable when you want to use the same variable for rest of the program
    • To delete variable it uses keyword "del"

    Comments

    Post a Comment

    Popular posts from this blog

    Introduction to BIG DATA: Types, Characteristics & Benefits

    Learn Python Main Function with Examples: Understand __main__

    Python XML Parser Tutorial: Create & Read XML with Examples