IDLE
.
def __init__(self, title, label, artist, released):
def get_title(self):
def get_label(self):
def get_artist(self):
def get_released(self):
def __str__(self):
lp = LP("The London Concert", "Sony Classical", "Wynton Marsalis", "1994") print(lp.get_title()) print(lp.get_label()) print(lp.get_artist()) print(lp.get_released()) print(lp)
The London Concert Sony Classical Wynton Marsalis 1994 The London Concert, Sony Classical, Wynton Marsalis, 1994
The London Concert Sony Classical Wynton Marsalis 1994 The London Concert, Sony Classical, Wynton Marsalis, 1994
cd it117/hw/hw9
hw9.py
The London Concert Sony Classical Wynton Marsalis 1994 The London Concert, Sony Classical, Wynton Marsalis, 1994
Copyright © 2020 Glenn Hoffman. All rights reserved. May not be reproduced without permission.