when use cython to create helloworld.c from helloworld.pyx , this error occured:
error compiling Cython file: -------------------------------------------
It looks like cython treats all prints as python 2 statements by default. In order to use the python 3 print function you need to import it from the future module:
from __future__ import print_function print('hello world',end='')