Python 中检查变量是否函数
使用 callable()
函数检查变量是否为函数,例如 if callable(function):
。 callable()
函数接受一个对象,如果该对象是可调用的,则返回 True,否则返回 False。
def do_math(a, b):
return a + b
print(callable(do_math)) # 👉️ True
print(callable('hello')) # 👉️ False
if callable(do_math):
# 👇️ this runs
print('The variable is a function')
else:
print('The variable is NOT a function')
我们使用 callable()
内置函数来检查变量是否是函数。
callable
函数将对象作为参数,如果对象看起来是可调用的,则返回 True,否则返回 False。
print(callable(lambda x: x * 2)) # 👉️ True
print(callable(3.14)) # 👉️ False
如果 callable()
函数返回 True,调用对象仍有可能失败,但如果返回 False,则调用对象永远不会成功。
请注意
,callable()
函数不会检查传入的值是否专门为函数,它会检查该值是否可调用。
它还为类返回 True。
class Employee:
pass
print(callable(Employee)) # 👉️ True
print(callable(int)) # 👉️ True
另一种方法是使用 inspect.isfunction()
方法。
使用 inspect.isfunction() 检查变量是否为函数
使用 inspect.isfunction()
方法检查变量是否是函数,例如 if inspect.isfunction(function):
。 如果提供的对象是 Python 函数,则 inspect.isfunction()
方法返回 True,否则返回 False。
import inspect
def get_len(a):
return len(a)
print(inspect.isfunction(get_len)) # 👉️ True
if inspect.isfunction(get_len):
# 👇️ this runs
print('The variable is a function')
print('The Site:www.jiyik.com lenth:'+ str(get_len('www.jiyik.com')))
else:
print('The variable is NOT a function')
inspect.isfunction
方法接受一个对象,如果该对象是 Python 函数,则返回 True。
如果传递另一个可调用对象,该方法将返回 False,例如 一个类。
import inspect
class Employee:
pass
print(inspect.isfunction(Employee)) # 👉️ False
print(inspect.isfunction(int)) # 👉️ False
但是,需要注意的重要一点是,该方法仅在提供 Python 函数时才返回 True。
对于大多数内置函数,该方法返回 False,因为它们是在 C 中实现的,而不是在 Python 中。
import inspect
print(inspect.isfunction(zip)) # 👉️ False
print(inspect.isfunction(map)) # 👉️ False
print(callable(zip)) # 👉️ True
print(callable(map)) # 👉️ True
zip
和 map
函数是用 C 实现的,因此 inspect.isfunction()
方法返回 False。
可调用函数按预期工作,因为它只是检查提供的对象是否可调用。
我们还可以使用 types.FunctionType
类来检查变量是否为函数。
import types
def do_math(a, b):
return a + b
print(isinstance(do_math, types.FunctionType)) # 👉️ True
print(isinstance(zip, types.FunctionType)) # 👉️ False
print(isinstance(map, types.FunctionType)) # 👉️ False
但是,该类也仅对 Python 函数返回 True。
如果传入的对象是传入类的实例或子类,则 isinstance
函数返回 True。
types.FunctionType
类的工作方式与 inspect.isfunction()
方法的工作方式相同。
然而,这个类有点间接,所以没有充分的理由使用它。
相关文章
Python for 循环中的下一项
发布时间:2023/04/26 浏览次数:179 分类:Python
-
本文讨论了 Python 中的 for 循环以及如何通过使用 for 循环和示例来跳过列表的第一个元素。
Python While 循环用户输入
发布时间:2023/04/26 浏览次数:148 分类:Python
-
我们可以在 while 循环中使用 input() 函数来输入数据,直到在 Python 中满足某个条件。
在 Python 中将整数转换为罗马数字
发布时间:2023/04/26 浏览次数:87 分类:Python
-
本篇文章将介绍在 Python 中将整数转换为罗马数字。以下是一个 Python 程序的实现,它将给定的整数转换为其等效的罗马数字。
在 Python 中将罗马数字转换为整数
发布时间:2023/04/26 浏览次数:144 分类:Python
-
本文讨论如何在 Python 中将罗马数字转换为整数。 我们将使用 Python if 语句来执行此操作。 我们还将探讨在 Python 中将罗马数字更改为整数的更多方法。
在 Python 中读取 gzip 文件
发布时间:2023/04/26 浏览次数:70 分类:Python
-
本篇文章强调了压缩文件的重要性,并演示了如何在 Python 中使用 gzip 进行压缩和解压缩。
在 Python 中锁定文件
发布时间:2023/04/26 浏览次数:141 分类:Python
-
本文解释了为什么在 Python 中锁定文件很重要。 这讨论了当两个进程在没有锁的情况下与共享资源交互时会发生什么的示例,为什么在放置锁之前知道文件状态很重要,等等
在 Python 中将 PDF 转换为文本
发布时间:2023/04/26 浏览次数:196 分类:Python
-
在本教程中,我们将学习如何使用 Python 使用 PyPDF2、Aspose 和 PDFminer 将 PDF 文档转换为文本文件。
在 Python 中创建临时文件
发布时间:2023/04/26 浏览次数:53 分类:Python
-
本文讲解了tempfile库函数的四个子函数:TemporaryFile、NamedTemporaryFile、mkstemp、TemporaryDirectory。 每个部分都提供了适当的程序,以简化对概念的理解。