在Python中我第一次嘗試類。當我使用這段代碼時,我收到第15行的錯誤'這個構造不帶參數'。有人能告訴我什麼是問題嗎?這個Constructer不帶參數
class Triangle:
def _init_(self,h,b):
self.h = h
self.b = b
author = 'No one has claimed this rectangle yet'
description = 'None'
def area(self):
return (self.h * self.b)/2
def description(self,text):
self.description = text
def author(self,text):
self.author = text
fred = Triangle(4,5)
print fred.area()
兩邊用雙下劃線初始化,而不僅僅是一個:'__init__',和不是'_init_' – pixis