我正在使用以下脚本来查看'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的新手,所以任何输入都会有所帮助
答案 0 :(得分:1)
&
是python中的bitwise and
运算符。你应该使用and
喜欢 -
if ttype != None and ttype != '':