Hi, if you are interested in C-Python mixed programming, please take a look at:
http://pythoidc.googlecode.com
PythoidC is the C language like the Python, by the Python and for the Python
 
import c
c.include(c.h.stdio) 
c.include(c.h.stdlib) 
'''Annotation is free!''' 
int fib(int n): 
    if(n<=2): 
        return1 
    else: 
        return fib(n-1)+ fib(n-2) 
int main(int argc,char**argv): 
    int n //C style annotation 
    n=c.stdlib.atoi(argv[1]) 
    c.stdio.printf('fibonacci(%d)=%d\n', n, fib(n))
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to