import csv
## Do not import any other modules.
## The csv module is all you need.


def make_html_playlist( playlist ):
    pass
    # Here you should write your actual code that creates
    # an HTML file to display the playlist details stored
    # in the CSV file referred to by the playlist argument.
    

# You can add other functions that can be used by your code
# in make_html_playlist
# For example, you may use the get_datalist_from_csv function
# that was provided for display_playlist
# You may also take and adapt code from the example file
# make_html_table_file.py

## Some tests you should try.
#make_html_playlist( "geek-music.csv" )
#make_html_playlist( "snake-music" )

## Note that the ".csv" extension is optional, make_html_playlist
## should work the same, whether or not it is present.

## Before submitting please delete of comment out any code
## that is outside definined functions (apart from 'import csv').

