Activity 19.18.1.
Given a
Song class that has object attributes of name and length as shown below, finish a Album class with an __init__ method that takes a name and list of Song objects. Then write a length method in the Album class that returns the total length for the album based on the length of the songs in the album. Given the objects created below it should print 242.

