d = {'a': 1, 'b': 2, 'c': 3}l = [1, d]tuples and lists are heterogeneous containers
tuples are immutable
tuples can be used as a key to a dictionary.
Belore are Edward’s notes on Quiz 02.
# dict = # oh no no, don't use type names as variable namesl = {1, 2, 1} # set
type(l)set
l{1, 2}
d = {'a': 1, 'b': 2, 'c': 3}lst = [1, 2, 3]
a, b, c = lst
b2