Using Double Linked Lists Music App Python Project
Description
Python coded solution to creating modified double-linked lists as the data structure for a music playlist.
Please create / implement a song class in the solution to make objects of type song, for instance / example:
class Song:
def __init__(self, songID):
self.title = songID
self.nextSong = None
self.prevSong = None
Please include in-depth explanatory comments for each & any class, function, and loops/statements thoroughly explaining its function / role in the operation.