What is output? class Item: def __init__(self): self.name = 'None' self.quantity = 0 def dsp_item(self): print(f'Name: {self.name}, Quantity: {self.quantity}') class Produce(Item): def __init__(self) self.expiration = '01-01-2000' def dsp_item(self): Item.dsp_item(self) print(f'Expiration: {self.expiration}') n = Produce() n.dsp_item()