Jed Rembold
March 6, 2026

Given the code to the right, what would be the printed value of
A?
['Fox', 'Giraffe', 'Hippo', 'Iguana']['Fox', 'Hippo', 'Iguana']['Iguana', 'Fox']A = [
'Fox',
'Giraffe',
'Hippo'
]
A.append('Iguana')
A[:].reverse()
B = A
for anim in B:
if anim[1] == 'i':
B.remove(anim)
print(A)
raw_data.py contains the
constant DATA, which is a large list of
stringsappend to create a list of only the entries
that are numbersid before your code and after you code is
still the same!