extension of python
Answers
Answered by
1
Any code that you write using any compiled language like C, C++, or Java can be integrated or imported into another Python script. This code is considered as an "extension."
...
First look at a Python Extension
The header file Python. ...
The C functions you want to expose as the interface from your module.
devendra8249:
hi
Answered by
1
Python extension module is a module which can be imported and used from within Python which is written in another language. Extension modules are almost always written in C, and sometimes in C++, because CPython provides an API for working with Python objects targeted at C.
Hope It Will Help.❤
Similar questions