我正在尝试在 Plone Products.PythonScript 中检查变量的类型。我试过这段代码:
if isinstance(var, list):
do(sth)
不幸的是,'list' 和 'type' 在 PythonScript 中受到限制。我收到了这个错误:
TypeError: isinstance() arg 2 must be a class, type, or tuple of classes and types
有没有可能检查我的变量的类型?