Python に似ており Python のコードと一緒に記述できる - Cython のコードをコンパイルして効率的な C のコードを生成できる - 一般に CPU バウンドな処理は C が Python より高速なので高速化の手段として有用 - 静的型付け、関数呼び出しのオーバーヘッドの小ささ等が要因 - CPU バウンドではない処理は Cython による高速化の恩恵が薄いので注意 - C, C# の知識があれば深く使いこなせるがぶっちゃけそんなもん知らなくても使える The Cython language is a superset of the Python language that additionally supports calling C functions and declaring C types on variables and class attributes. This allows the compiler to generate very efficient C code from Cython code. (公式サイトより)