Jed Rembold
March 2, 2026

What would the below expression evaluate to? Or would it error out?
['One', 2, True][-1:1:-1][0]
This is a coding problem, work in pairs or trios on a single computer
In manifest.py, I’ve created a list
of passenger information for an airline
The list has passenger information in a “name”, “age”, “seat” ordering
So, for example, the first few passengers look like:
MANIFEST = [
"Anthony Hutchinson", 77, "24A",
"Carol Turner", 37, "8F",
...etc...
]Prob2.py, you can add your codeis_seat_available
to check to see if a particular seat is available (not currently
assigned)avg_age_window_seats, which returns the
average age of all passengers riding in a window seat (“A” and “F”
seats)


