0 votes
in Python by
Explain how can you access a module written in Python from C?

1 Answer

0 votes
by
You can access a module written in Python from C by following method,

Module = =PyImport_ImportModule("<modulename>");
...