Tagged Questions
14
votes
5answers
3k views
If Python is interpreted, what are .pyc files?
I've been given to understand that Python is an interpreted language... however, when I look at my Python source code I see .pyc files, which Windows identifies as "Compiled Python Files". Where do ...
11
votes
5answers
782 views
Interpreted vs. Compiled vs. Late-Binding
Python is compiled into an intermediate bytecode(pyc) and then executed. So, there is a compilation followed by interpretation. However, long-time Python users say that Python is a "late-binding" ...
4
votes
7answers
3k views
Interpreted vs. Compiled Languages for Web Sites (PHP, ASP, Perl, Python, etc.)
I build database-driven web sites. Previously I have used Perl or PHP with MySQL.
Now I am starting a big new project, and I want to do it in the way that will result in the most responsive possible ...
3
votes
11answers
955 views
Why convert code in one language to another?
I have heard of some compilers that convert code in one high level language to another
e.g Shedskin that converts python code to optimized C++.
I was wondering why would one ever try to do that. Why ...
2
votes
6answers
355 views
What is the best approach to both modularity and platform independence?
I hope this question does not come off as broad as it may seem at first. I am designing a software application in my <sarcasm>voluminous</sarcasm> spare time. I would like it to be both ...