To be sure we are on the same page, I think here what we have is something much more fundamental, in practice I am just trying to run your own Python example on a conda environment which has pythonnet ...
#!python def test_length(): string = u"I♥U" assert len(string) == 3 if __name__ == "__main__": test_length() If I run it using Python 2 on the command-line, I will ...