String and non-String concatenation

If your Jacl script does a string plus a non-string concatenation, then you need to modify the preliminary converted Jython script to use Jython right-slanted quotes (`xx`). Otherwise, you will get the following runtime error: __add__ not defined for these operands
JACL:   str += $int1 + "xyz"
==>
JYTHON: str += int1 + "xyz"
Solution
Manually modify the converted Jython script with explicit non-string conversion by adding right-slanted quotes (`).
JYTHON: str += `int1` + "xyz"
Alternatively:
JYTHON:  str += str(int1) + "xyz"

Feedback