1.

Where Is The Math.py (socket.py, Regex.py, Etc.) Source File?

Answer»

There are (at least) three kinds of modules in PYTHON:
1. modules written in Python (.PY);
2. modules written in C and dynamically loaded (.dll, .pyd, .so, .SL, etc);
3. modules written in C and linked with the interpreter; to get a list of these, type:
import sys
PRINT sys.builtin_module_names

There are (at least) three kinds of modules in Python:
1. modules written in Python (.py);
2. modules written in C and dynamically loaded (.dll, .pyd, .so, .sl, etc);
3. modules written in C and linked with the interpreter; to get a list of these, type:
import sys
print sys.builtin_module_names



Discussion

No Comment Found