私はPythonに不慣れで、プログラミングにまったく慣れていないので、我慢してください。
ショーパーソンクラスを構築していた場合
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)
関数はコードに対して正確に何__init__()
をしますか?