+ 3
How to use Python3 to access C++ function
I want to make function in C++ but use that function by Python
1 Respuesta
+ 1
You compile your c++ code to a DLL and use the ctypes module to access the functions in the DLL...
I want to make function in C++ but use that function by Python