Jython类型错误 - Maximo自动化脚本

时间:2015-06-28 06:13:02

标签: python jython maximo

我正在使用以下脚本来查看'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的新手,所以任何输入都会有所帮助

1 个答案:

答案 0 :(得分:1)

&是python中的bitwise and运算符。你应该使用and喜欢 -

if ttype != None and ttype != '':