Using this class:
class Person:
def __init__ (self, Name, Address, Phone, Height, Weight):
self.name = Name
self. Address = Address
self.Phone = Phone
self.Height = Height
self.Weight = Weight
self.PoundserPerInch = Height / Weight
How would I take in the arguments “Height” and “Weight” as integers so that I could perform some math function on them?
Moreover: