Turn in on the submit serverbefore the end of lecture for credit
Turn in one .zip with all the .py files
Unlimited attempts during lecture
We’ll provide solutions – pay attention!
Common Errors
Incorrect file names:
check_even.py vs. checkEven.py
Incorrect function name
def check_even(x): vs. def check_evens(x):
Spacing errors
1 2 3 vs. 1 2 3
Read your autograder output!
Today
Tuples
Tuple assignment
Tuples vs. lists
Files
Warmup
Lists are mutable, ordered collections
Lists are passed as references
Modifying a list in a function can modify the list outside of the function
Exercise 1
Write a function ex1 that takes a single list argument, and returns a new list, consisting of the same contents as the original list, but with an integer 9 appended to it. Do not modify the input list.
ex1([2, 3]) returns [2, 3, 9]
L = [4, 6, 7]ex1(L)print(L)
prints [4, 6, 7] (original list not modified)
Submit as ex1.py.
Tuples
Superficially similar to lists
Tuples use parentheses ( and )
char_tuple = ("A", "C", "D", "F")
Tuples can be indexed just like lists
print(char_tuple[2])
D
Difference between tuples and lists: tuples are immutable
Tuples Are Immutable
List:
L = ["A", "B", "C"]L[1] ="E"print(L)
['A', 'E', 'C']
Tuple:
K = ("A", "B", "C")K[1] ="E"print(K)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'tuple' object does not support item assignment
Syntax 😎
Lists are defined with square brackets [ and ]
x = [2, 3, 4]
Tuples are defined with parentheses ( and )
y = (3, 4, 5)
Dicts are defined with curly braces { and }
z = {"A": 1, 2: 3}
Syntax 😣
Lists, Tuples, Dicts, and Strings are all indexed with square brackets