我正在使用以下脚本查看'ttype'是否已更改,因此我可以重置'tclass'的值
if ttype != None & ttype != '':
tclass=None
但是,在应用程序中触发脚本时收到以下错误:
TypeError: unsupported operand type(s) for &: 'NoneType' and 'unicode' in <script> at line number 1
我是python / jython的新手,所以任何输入都将对您有所帮助
最佳答案
&
是python中的bitwise and
运算符。您应该像这样使用and
-
if ttype != None and ttype != '':
关于python - Jython类型错误-Maximo自动化脚本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31096713/