Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Quiz
4. Question 3
Summary

Instruction

Well done! Let’s move on.

Exercise

You are given a list of string values:

attendants = ['John Smith', 'Marie Tate', 'Alfredo Singleton', 'Leroy George', 'Arthur Todd', 'Frankie Brady']

Print all values, separating them with commas and following each with a white space.

Expected output:

John Smith, Marie Tate, Alfredo Singleton, Leroy George, Arthur Todd, Frankie Brady

Stuck? Here's a hint!

Use the .join() function.