【関連する外部ページ】
http://omake.accense.com/static/doc-ja/cython/src/userguide/tutorial.html
【サイト内の関連ページ】
【関連する外部ページ】
Python の公式ページ: https://www.python.org/
Python のまとめ: 別ページ »にまとめ
Python の公式ページ: https://www.python.org/
python -m pip install cython
print "Hello World"
from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext setup( cmdclass = {'build_ext': build_ext}, ext_modules = [Extension("helloworld", ["helloworld.pyx"])] )
python setup.py build_ext --inplace