Karl Nelson
Results
562
comments of
Karl Nelson
Unfortunately while Java strings and Python string seem compatible they sadly are not. Use ‘str(x)’ on a Java string if you want a Python one.
I am guessing that you are hit by the fact that back end has multiple String instances and you are checking “is”. Likely you meant isinstance(a, JString) which would be...