I wanted to see the python compiled files (.pyc) when i execute python .py files.
help me how would i get .pyc files generated.
The .pyc file is generated automatically when you execute python a .py file from the command line (python mymodule.py) and it will be in the same directory as the .py file that you executed. IDLE has a curious way of not doing this which I don't understand. Most other IDEs will generate the .pyc files also.