Overview
Teaching: 10 min
Exercises: 10 minQuestions
How can I store data in programs?
Objectives
Write programs that assign scalar values to variables and perform calculations with those values.
Correctly trace value changes in programs that use scalar assignment.
= symbol assigns the value on the right to the name on the left.age
and a name in quotation marks to a variable first_name.age = 42
first_name = 'Ahmed'
__alistairs_real_age have a special meaning
so we won’t do that until we understand the convention.print to display values.print that prints things as text.print(first_name, 'is', age, 'years old')
Ahmed is 42 years old
print automatically puts a single space between items to separate them.print(last_name)
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-1-c1fbb4e96102> in <module>()
----> 1 print(last_name)
NameError: name 'last_name' is not defined
Variables Persist Between Cells
Variables defined in one cell exist in all other cells once executed, so the relative location of cells in the notebook do not matter (i.e., cells lower down can still affect those above). Remember: Notebook cells are just a way to organize a program: as far as Python is concerned, all of the source code is one long set of instructions.
age a few lines ago.age = age + 3
print('Age in three years:', age)
Age in three years: 45
element = 'helium'
print(element[0])
h
[start:stop].element = 'sodium'
print(element[0:3])
sod
len to find the length of a string.print(len('helium'))
6
FIXME: need to introduce slices
Name and name are different variables.flabadab = 42
ewr_422_yY = 'Ahmed'
print(ewr_422_yY, 'is', flabadab, 'years old')
Swapping Values
Draw a table showing the values of the variables in this program after each statement is executed. In simple terms, what do the last three lines of this program do?
lowest = 1.0 highest = 3.0 temp = lowest lowest = highest highest = temp
Predicting Values
What is the final value of
positionin the program below? (Try to predict the value without running the program, then check your prediction.)initial = "left" position = initial initial = "right"
Challenge
If you assign
a = 123, what happens if you try to get the second digit ofa?Solution
Numbers are not stored in the written representation, so they can’t be treated like strings.
a = 123 print(a[1])TypeError: 'int' object is not subscriptable
Choosing a Name
Which is a better variable name,
m,min, orminutes? Why? Hint: think about which code you would rather inherit from someone who is leaving the lab:
ts = m * 60 + stot_sec = min * 60 + sectotal_seconds = minutes * 60 + secondsSolution
minutesis better becauseminmight mean something like “minimum” (and actually does in Python, but we haven’t seen that yet).
Slicing
What does the following program print?
element = 'carbon' print('element[1:3] is:', element[1:3])element[1:3] is: ar
- What does
thing[low:high]do?- What does
thing[low:](without a value after the colon) do?- What does
thing[:high](without a value before the colon) do?- What does
thing[:](just a colon) do?
Key Points
Use variables to store values.
Use
Variables persist between cells.
Variables must be created before they are used.
Variables can be used in calculations.
Use an index to get a single character from a string.
Use a slice to get a substring.
Use the built-in function
lento find the length of a string.Python is case-sensitive.
Use meaningful variable names.