I'm new to python and a total noob with programming so bear with.
If I was building show Person 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 = int(Height) / int(Weight)
what exactly does the __init__() function do for the code?