Get startedGet started for free

(SAMPLE SEQUENTIAL) Festivus!

In this exercise, you will be throwing a party -- a Festivus if you will!

You will be provided a list of guests (the names list we have been working with from previous exercises). Each guest, for whatever reason, has decided to show up to the party in ten-minute increments. For example, Jerry shows up to Festivus 10 minutes into the party's start time, Kramer shows up 20 minutes into the party, so on and so forth.

We want to write a few simple lines of code, using the built-ins we have covered, to welcome each of our guests and let them know how many minutes late they are to our party.

Let's welcome our guests!

Note that numpy has been as been imported into your session as np and the names list has been loaded as well.

This exercise is part of the course

Drag and Drop Examples

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Create a list of arrival times
arrival_times = [____(____,____,____)]

print(arrival_times)
Edit and Run Code