Variables, Python Programming

Assignment Help:

Variables

We cannot  go very far without variables. A variable is a value related to a name that we can bind  to have a particular value  and  then  later use in an expression. When  a variable is calculated in an statement, it is computed by looking  to see to what  value  it is bound.

An interpreter keeps track of which  variables are bound to what  values  in binding environments. An environment defines a mapping between variable values  and names.  The values  may be integers, ?oating point characters, numbers, or pointers to more hard  entities  such as procedures or larger  collections of data.

Here is an example binding environment:

 

b

3

x

2.2

foo

-1012

 

Each row shows a binding: the entry  in the ?rst column is the variable name  and the entry  in the second  column is the value  it to which  it is bound.

 

When  you  start  up  the Python shell,  you  instantly start communicating with  a local binding environment.  You can include a binding or change  an existing  binding by evaluating an assignment statement of the form:

=

where is a variable name  (a string  of letters  or digits  or the character _, not starting with  a digit) and is a Python expression.14 Expressions are always  computed  in some environment.

We may  have the given interaction in a fresh Python shell:

 

>>> a = 3

>>> a

3

>>> b

 

Traceback (most recent call last):

File "", line 1, in

NameError: name 'b' is not defined

>>>

We started by assigning the variable value 3. That included a binding for a to the local environment.

Next, we computed the statement a. The value of a statement with one or more variable names in it cannot be determined unless we know with respect to what environment it is being computed. Thus, we will always speak  of evaluating expressions in an environment. In the mean while the program  of evaluating an expression in some environment E, if the interpreter takes a variable, it checks that  variable in E: if E contains a binding for the variable, then  the related value  is returned; if it does  not, then  an error  is provided. In the Python shell communication above,  we may see that the interpreter was  able to search a binding for a and  return a value,  but  it was  not able to ?nd  a binding for b.

 

Why do we bother de?ning values  for variables? They provide  us to reuse  an intermediate value in a calculation. We may  want  to calculate a formula in two parts, as in:

 

>>> c = 952**4

>>> c**2 + c / 2.0

6.7467650588636822e+23

They  will  also  play  a crucial  role  in abstraction and  the  de?nition of function.  By providing  a name  to a value,  we can isolate  the use of that  value  in other  calculation, so that  if we decide to modify  the value, we only have to change  the de?nition (and not change  a value several  places in the code).

It is ?ne to reassign the value  of a variable; although we use the equality symbol  = to stand for assignment, we are not  creating a mathematical equation of equality.  So, for program, we can write:

 

>>> a = 3

>>> a = a + 1

>>> a

4

 


Related Discussions:- Variables

Modules, Modules As you start to write larger programs, you will want ...

Modules As you start to write larger programs, you will want  to save the function de?nitions in multiple ?les, collected together according to what  they  do.  So, for exampl

Primitives, Primitives, Composition, Abstraction, and Patterns   We ...

Primitives, Composition, Abstraction, and Patterns   We will  start  by thinking about  how  the  PCAP  framework applies to computer programs, in general. We may do that by

Create a program to produce a business speak phrase, The goal of this exerc...

The goal of this exercise is to write a \business phrase" generator, which each time it is called produces lines of business speak, such as: It's time that we became uber-effici

Environments in python, Environments in Python Generally, Python estab...

Environments in Python Generally, Python establishes the following binding environments: 1.  builtin     : the mother of all environments: it contains the de?nitions of

Example of python code, Worked example 1   Let's examine what  happens...

Worked example 1   Let's examine what  happens when  we compute the following Python code:   def p(x, y): z = x*x - y return z + 1/z   >>> p(1.0, 2.0) -2.0

Programming, We sell pdf''s from our site and pdfs can be ordered from the ...

We sell pdf''s from our site and pdfs can be ordered from the site by selecting a book, putting it in a shopping cart, then signing in with a password or as a guest, and then check

List comprehensions, List Comprehensions   Python has a very nice b...

List Comprehensions   Python has a very nice built-in  facility for doing  many  iterative methods, known as list comprehensions. The basic template is       [

Expressions and assignment, Expressions and assignment We can think of...

Expressions and assignment We can think of most computer programs as performing some sort of transformation on data.  Our code may get as input the exam scores of everyone in

Normalize a vector, Normalize a vector Let's imagine we want  to norma...

Normalize a vector Let's imagine we want  to normalize a vector  of three  variables;  that  is to compute a new  vector  of three values,  such that its size  is 1. Here is o

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd