python  Declare a class named PatientData that contains two attributes named height_inches and weight_pounds. Sample output for the given program with inputs: 63 115Patient data (before): 0 in, 0 lbs Patient data (after): 63 in, 115 lbs   patient = PatientData() print('Patient data (before):', end=' ') print(patient.height_inches, 'in,', end=' ') print(patient.weight_pounds, 'lbs') patient.height_inches = int(input()) patient.weight_pounds = int(input()) print('Patient data (after):', end=' ') print(patient.height_inches, 'in,', end=' ') print(patient.weight_pounds, 'lbs')

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter9: Records (struct)
Section: Chapter Questions
Problem 2PE
icon
Related questions
Question

python 

Declare a class named PatientData that contains two attributes named height_inches and weight_pounds.

Sample output for the given program with inputs: 63 115Patient data (before): 0 in, 0 lbs Patient data (after): 63 in, 115 lbs

 

patient = PatientData()
print('Patient data (before):', end=' ')
print(patient.height_inches, 'in,', end=' ')
print(patient.weight_pounds, 'lbs')


patient.height_inches = int(input())
patient.weight_pounds = int(input())

print('Patient data (after):', end=' ')
print(patient.height_inches, 'in,', end=' ')
print(patient.weight_pounds, 'lbs')

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Constants and Variables
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning