+ 1
What are the use of C-Family (C,C++,Csharp) in python programming ,python modules etc? Please answer to my any of the questions.
2 Respuestas
+ 1
You can use c/c++ to write Python modules.
+ 1
From Python, importing ctypes, you can call every function exported by an executable module (typically a DLL written in C/C++).
On the other hand, from C/C++, including python.h, you can interpret any function from any Python module, using the Abstract Objects Layer.
https://code.sololearn.com/cdrKyPUDL51l/?ref=app