Answer:
class PatientData:
def __init__(self, height_inches = 0, weight_pounds = 0):
self.height_inches = 0
self.weight_pounds = 0
lunaLovegood = PatientData()
print ('Patient data (before):', end=' ')
print (lunaLovegood.height_inches, 'in,', end=' ')
print (lunaLovegood.weight_pounds, 'lbs')
lunaLovegood.height_inches = 63
lunaLovegood.weight_pounds = 115
print ('Patient data (after):', end=' ')
print (lunaLovegood.height_inches, 'in,', end=' ')
print (lunaLovegood.weight_pounds, 'lbs')
Step-by-step explanation:
Output is as below
Patient data (before): 0 in, 0 lbs
Patient data (after): 63 in, 115 lbs