Discussion 6: Mutability
If there are fewer than 3 people in your group, feel free to merge your group with another group in the room.
Now switch to Pensieve:
- Everyone: Go to pensieve.co, log in with your @berkeley.edu email, and enter your group number (which was in the email that assigned you to this lab).
Once you're on Pensieve, you don't need to return to this page; Pensieve has all the same content (but more features). If for some reason Penseive doesn't work, return to this page and continue with the discussion.
Getting Started
Say your name and share a favorite place on the Berkeley campus or surrounding city that you've discovered. Try to pick a place that others might not have been yet. (But if the room you're in now is your favorite place on campus, that's ok too.)
List Mutation
append
method.
>>> s = [1, 3, 4]
>>> t = s # A second name for the same list
>>> t[0] = 2 # this changes the first element of the list to 2, affecting both s and t
>>> s
[2, 3, 4]
>>> s.append(5) # this adds 5 to the end of the list, affecting both s and t
>>> t
[2, 3, 4, 5]
There are many other list mutation methods:
append(elem)
: Addelem
to the end of the list. ReturnNone
.extend(s)
: Add all elements of iterables
to the end of the list. ReturnNone
.insert(i, elem)
: Insertelem
at indexi
. Ifi
is greater than or equal to the length of the list, thenelem
is inserted at the end. This does not replace any existing elements, but only adds the new elementelem
. ReturnNone
.remove(elem)
: Remove the first occurrence ofelem
in list. ReturnNone
. Errors ifelem
is not in the list.pop(i)
: Remove and return the element at indexi
.pop()
: Remove and return the last element.
Q1: Nested Lists
The mathematical constant e is 2.718281828...
Draw an environment diagram to determine what is printed by the following code.
If you have questions, ask them instead of just looking up the answer! First ask your group, and then the course staff.
Q2: Apply in Place
Implement apply_in_place
, which takes a one-argument function fn
and a list s
. It modifies s
so that each element is the result of applying fn
to that element. It returns None
.
for i in range(...)
to iterate over the indices (positions) of s
.
Q3: Word Rope
Definition: A rope in Python is a list containing only one-letter strings except for the last element, which may either be a one-letter string or a rope.
Implement word_rope
, a Python function that takes a non-empty string s
containing only letters and spaces that does not start or end with a space. It
returns a rope containing the letters of s
in which each word is in a
separate list.
Important: You may not use slicing or the split
, find
, or index
methods of a string. Solve the problem using list operations.
Reminder: s[-1]
evaluates to the last element of a sequence s
.
result
is a rope and word
is a list within that rope which is still being constructed. When x
is a space, add an empty list to the end of word
and assign word
to this empty list. Otherwise, add x
to the end of word
.
Document the Occasion
Please all fill out the attendance form (one submission per person per week).