Python進階筆記(一)萬物皆對象

1.1 函數和類也是對象,屬於python的一等公民 1. 能夠賦值給一個變量: # 函數能夠給賦值爲一個變量 def ask(name="bobby"): print(name) my_func = ask my_func("bobby") # 類能夠賦值爲一個變量 class Person: def __init__(self): print("bobby1") my_class =
相關文章
相關標籤/搜索