python可调用对象以及函数概念
在Python中,除了用户定义的函数,调用运算符(即 ())还可以应用到其他对象上。如果想判断对象能否调用,可以使用内置的 callable() 函数。Python 数据模型文档列出了以下 7 种可调用对象。
引用自:Python中的可调用对象
也可以理解为:Python中万物皆为对象
如下代码:
def hi(name = "yasoob"):
return "hi " + name
# 函数hi 为 可调用对象,()为可调用运算符
# hi() 表示的函数调用
print(hi)
print(hi())
#Python变量名可以直接指向可调用对象
greet = hi
print(greet)
print(greet())
执行结果:
<function hi at 0x7fd0782641e0>
hi yasoob
<function hi at 0x7fd0782641e0>
hi yasoob
网友评论