0 votes
in Python by
How can we access a module written in Python from C?

1 Answer

0 votes
by
We can access the module written in Python from C by using the following method.

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