tags:

views:

58

answers:

1

I would like to code in c ,but use the value in python by compile the c source file to .so file.

+1  A: 

The ctypes library is probably the easiest way to do this.

Wayne Werner