第五天 類練習題

2021-09-26 08:31:24 字數 3217 閱讀 9038

#訪問器,訪問__init__函式中的私有變數

@property

defheight

(self)

:return self.__height

#修改器,可修改私有變數,與上面的訪問器對應

@width.setter

defheight

(self,new_height)

: self.__height = new_height

defgetarea

(self)

: area = self.__width * self.__height

print

(self.__width,self.__height)

print

('面積為%f'

%area)

defgetperimeter

(self)

:round

= self.__width + self.__height

print

(self.__width,self.__height)

print

('周長為%f'

%round

)if __name__ ==

"__main__"

:#實列化類

rect = rectangle(width=

4,height=40)

#呼叫類的函式

rect.getarea(

)#在實列化類

('你成功取出%.2f'

%money)

print

('還剩餘額為%.2f'

%self.__balance)

else

:print

('你的餘額不足'

)print

('你的餘額為%.2f'

%self.__balance)

defdeposit

(self,money)

: self.__balance += money

print

('你成功存入%.2f'

%money)

print

('你的餘額為%.2f'

%self.__balance)

if __name__ ==

"__main__"

: accent =account(id_=

1122

,balance=

20000

,annuall=

4.5)

print

(accent.getmonthterst())

print

(accent.withdrow(

2500))

print

(accent.deposit(

3000

))

國慶第五天

直接在寢室待了乙個上午 一 matlab 試了一下昨天安裝的matlab2010b發現檔案都打不開,報這個錯 undefined function or method uiopen for input arguments of type char 二 c 1.找到了個之前 裡的乙個問題 把本週開頭和...

集訓第五天

今天學習了乙個快速指數冪取餘的演算法。就拿一道題來說明 description 上初中的時候我們就學會了冪乘運算,可是我們卻不知道對於高階的冪乘,出結果的方法比較慢,那麼你有什麼更好的方法嗎?input 第1行,乙個整數n 1 n 1000 表示要計算的資料組數 第2 n 1行,每行兩個整數,第1個...

實習第五天

今天是第一周的最後一天,最近的專案中乙個類似qq聊天系統為最重要的任務,師傅交給 我的任務是用layer完成三個介面,新增好友介面 查詢好友介面以及傳送好友新增請求介面。先說明一下layer的基本頁面模板 lang en charset utf 8 傳送好友請求title rel styleshee...