剛入門,隨記python
#python 中的類名約定以大字母開頭 class Man: #屬性,若是以__開頭,就變成了一個私有變量 age=27 sex='男士' __hobbies='愛好' #定義方法 用def關鍵字 #方法的第一個參數永遠是self,表示建立的實例自己 # def study(self): print('調用了方法:study() %s ' %'好好學習,每天向上') #定義一個有參的方法 def eat(self,foot): print("調用了方法:eat()有的吃,真心知足,我吃了:"+foot) def sleep(self): print("調用了方法:sleep()困了睡覺...") #main 方法 if __name__ == '__main__': #類的實例化對象 manObject=Man(); #調用學習方法 manObject.study() #調用睡覺方法 manObject.sleep(); #除了self不用傳遞,其餘參數正常傳入: manObject.eat("foot"); #調用類屬性 print("年齡:%s" % manObject.age); print("愛好:%s" % manObject.__hobbies);
如圖:學習