CommencerCommencer gratuitement

(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 you 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 the Festivus 10 minutes into the party's start time, Kramer shows up 20 minutes into the party, and so on and so forth.

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

Time to welcome your guests!

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

Cet exercice fait partie du cours

Develop for Azure Storage

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

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

print(arrival_times)
Modifier et exécuter le code