Hello,

How can I insert a conditional python expresion inside a ZPT.

Example:

if (my_expresion):
    toreturn = a
else:
    toreturn = b

return toretun

Thank you!