February 2019
Intermediate to advanced
672 pages
16h 50m
English
Cython is a language that extends Python by supporting the declaration of types for functions, variables, and classes. These typed declarations enable Cython to compile Python scripts to efficient C code. Cython can also act as a bridge between Python and C as it provides easy-to-use constructs to write interfaces to external C and C++ routines.
In this chapter, we will learn the following things:
While a minimum knowledge of C is ...