Variables

1. A variable is a named location reserved to store values in the memory. A variable is created or initialized automatically when you assign a value to it for the first time. (2.1.4.1)

2. Each variable must have a unique name – an identifier. A legal identifier name must be a non-empty sequence of characters, must begin with the underscore(_), or a letter, and it cannot be a Python keyword. The first character may be followed by underscores, letters, and digits. Identifiers in Python are case-sensitive. (2.1.4.1)

 

3. Python is a dynamically-typed language, which means you don’t need to declare variables in it.  To assign values to variables, you can use a simple assignment operator in the form of the equal (=) sign, i.e.,

 

4. You can also use compound assignment operators (shortcut operators) to modify values assigned to variables, e.g.,

 

5. You can assign new values to already existing variables using the assignment operator or one of the compound operators, e.g.:

 

6. You can combine text and variables using the + operator, and use the print() function to output strings and variables, e.g.:


 

Shortcut operators

It’s time for the next set of operators that make a developer’s life easier. Very often, we want to use one and the same variable both to the right and left sides of the = operator. For example, if we need to calculate a series of successive values of powers of 2, we may use a piece like this:

You may use an expression like this if you can’t fall asleep and you’re trying to deal with it using some good, old-fashioned methods:

Python offers you a shortened way of writing operations like these, which can be coded as follows:

Let’s try to present a general description for these operations.

If op is a two-argument operator (this is a very important condition) and the operator is used in the following context:

It can be simplified and shown as follows:

Take a look at the examples below. Make sure you understand them all.

Swaping the values of two variables

Take a look at the snippet:

If you do something like this, you would lose the value previously stored in variable_2. Changing the order of the assignments will not help. You need a third variable that serves as an auxiliary storage.

This is how you can do it:

Python offers a more convenient way of doing the swap – take a look:

Exercise 1

What is the output of the following snippet?

3

Exercise 2

Which of the following variable names are illegal in Python?

 

my_var
m
101 # incorrect (starts with a digit)
averylongvariablename
m101
m 101 # incorrect (contains a space)
Del
del # incorrect (is a keyword)

 

Exercise 3

What is the output of the following snippet?

11

 

Exercise 4

What is the output of the following snippet?

1.0

2 * b = 6
a = 6 → 6 / 6 = 1.0

Ex. 5

Which of the following variable names are illegal in Python?

(Select two answers)

False

print

_a&b

Print

Correct selection

False

Correct selection

_a&b

 

 

 

Scenario

Miles and kilometers are units of length or distance.

Bearing in mind that 1 mile is equal to approximately 1.61 kilometers, complete the program in the editor so that it converts:

  • miles to kilometers;
  • kilometers to miles.

Do not change anything in the existing code. Write your code in the places indicated by ###. Test your program with the data we’ve provided in the source code.

Pay particular attention to what is going on inside the print() function. Analyze how we provide multiple arguments to the function, and how we output the expected data.

Note that some of the arguments inside the print() function are strings (e.g., "miles is", whereas some other are variables (e.g., miles).

 

Scenario

Take a look at the code in the editor: it reads a float value, puts it into a variable named x, and prints the value of a variable named y. Your task is to complete the code in order to evaluate the following expression:

3x3 – 2x2 + 3x – 1

The result should be assigned to y.

Remember that classical algebraic notation likes to omit the multiplication operator – you need to use it explicitly. Note how we change data type to make sure that x is of type float.

Keep your code clean and readable, and test it using the data we’ve provided, each time assigning it to the x variable (by hardcoding it). Don’t be discouraged by any initial failures. Be persistent and inquisitive.

 

Test Data

Sample input

x = 0
x = 1
x = -1

Expected Output

y = -1.0
y = 3.0
y = -9.0

 

Solution: