1
我是新來的python和總編noob與編程,所以忍受。構建Python類
如果我是建築展Person類
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__()
功能的代碼呢?
雖然'__init __()'通常被稱爲「構造函數」,但它實際上並不是。它在構造實例後調用,它作爲'self'參數傳遞。實際的構造函數是'__new __()'。 – 2012-07-14 19:25:30
@SvenMarnach:謝謝,我還不知道。這很好。 – 2012-07-14 19:26:45