Current output is:
$ echo "from numpy import random;" \
> "n = random.randn(10000);" \
> "print('\n'.join(str(i) for i in n))"
from numpy import random; n = random.randn(10000); print('
'.join(str(i) for i in n))
After this change, I think it is originally expected string:
$ echo "from numpy import random;" \
> "n = random.randn(10000);" \
> "print('\\\n'.join(str(i) for i in n))"
from numpy import random; n = random.randn(10000); print('\n'.join(str(i) for i in n))