What are the use of C-Family (C,C++,Csharp) in python programming ,python modules etc? Please answer to my any of the questions. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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.

3rd Nov 2019, 11:32 AM
Rajan K
Rajan K - avatar
2 Answers
+ 1
You can use c/c++ to write Python modules.
3rd Nov 2019, 3:42 PM
Rora
+ 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
3rd Nov 2019, 10:07 PM
Bilbo Baggins
Bilbo Baggins - avatar