我想使用函数来检查传递给函数的参数是否是函数。
我做的事情是:
{
"store": {
"book": [
{
"category": "reference",
"author": "Nigel Rees",
"title": "Sayings of the Century",
"price": 8.95
},
{
"category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{
"category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{
"category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
],
"bicycle": {
"color": "red",
"price": 19.95
}
},
"expensive": 10
}
这似乎是错误的,因为我可以将任何东西传递给f。
如何通过注释检查传入的参数是否为函数?
答案 0 :(得分:0)
Python本身并没有强制执行任何类型 - 你所展示的只是类型提示,这可以被像linters这样的工具用来警告你,你正在做一些可能无法正常工作的事情。
如果要断言类型,则必须在函数体内显式执行。或者您可以使用静态类型检查器,例如mypy。