he = symbol is called the assignment operator in Python (and many other
languages)
If you want to change selection, open document below and click on "Move attachment"
1.2 Elements of Programming = and a value to the right:
>>> radius = 10
>>> radius
10
>>> 2 * radius
20
Names are also bound via import statements.
>>> from math import pi
>>> pi * 71 / 223
1.0002380197528042
T<span>he = symbol is called the assignment operator in Python (and many other
languages). Assignment is our simplest means of abstraction, for it allows us
to use simple names to refer to the results of compound operations, such as the
area computed above. In this way, co
Summary
status
not read
reprioritisations
last reprioritisation on
suggested re-reading day
started reading on
finished reading on
Details
Discussion
Do you want to join discussion? Click here to log in or create user.