BB 小舖
See the world through your eyes
Google Code Block
2010年8月5日
[Python] 傳遞 class、function 及其 arguments
在 Python 的世界中,所有東西都是物件,所以函式也可以當作物件來傳遞,例如:
def
func(func2):
z = func2()
print
z
def
func2():
x = 1
y = 2
return
x+y
執行 func() 可得 func2() 執行結果
但是函式也有可能接收不同的參數,
閱讀更多 »
較新的文章
較舊的文章
首頁
訂閱:
文章 (Atom)