「」"
@theme 類
@time 2018/12/8
@author lz
@content _del_方法
「」"class cat:
definit(self,name):
self.name=name;
print(「我的 %s 名字是」% self.name)
print(1)
#在物件結束前,會自動呼叫_del_方法
defdel(self):
print(2)
tom=cat(「tom」)
print(tom.name)
print("-"*50)
執行結果
「」"@theme 類
@time 2018/12/8
@author lz
@content _del_方法
「」"class cat:
definit(self,name):
self.name=name;
print(「我的 %s 名字是」% self.name)
print(1)
#在物件結束前,會自動呼叫_del_方法
defdel(self):
print(2)
tom=cat(「tom」)
print(tom.name)
#使用del刪除物件
del tom
#因為物件刪除前會自動呼叫_del_方法
機器學習之python基礎篇pandas
theme pandas time 2018 12 17 author lz content 測試pd.isnull方法和pd.notfull方法 function pd.isnull過濾缺失值得項 pd.notnull過濾出不是缺失值得項 import pandas as pd from pand...
Python機器學習篇
四年前,因為自己看了鋼鐵俠的系列電腦,開始真正的接觸ai,還記的那時候觸控夢想的激動的心情,想了很久不知道未來是什麼樣的,自己也不知道真正做什麼好,到底適合做什麼,可是我很明白四年前做的那個決定,可以讓自己保持興奮和有意義的事情。其實我知道的我可能做不到我想要的,就算在這麼努力也不可能,但是我即使做...
機器學習之python基礎13
theme 字串格式化輸出 author lz time 2018 12 05 content format的用法 str2 my name is age is 以字典的形式賦值,然後格式化輸出 print str2.format map 以變數的形式賦值,然後格式化輸出 print str2.fo...