The main philosophy behind python (according to me) is rapid application
development. The python gives you convinent and powerful tool to develop
sophisticated application rapidly.
You can find more details on
http://www.python.org/about/success/
http://www.python.org/about/success/#rapid-appl
chaouche yacine於 2013年1月6日星期日UTC+8上午6時34分38秒寫道:
> The compiler reads your source code and parses it into parse trees. This is
> first step. It then takes the parse trees and transform them into abstract
> syntax trees, which are like a DOM tree in an HTML file, and then transform
> that AST into
The compiler reads your source code and parses it into parse trees. This is
first step. It then takes the parse trees and transform them into abstract
syntax trees, which are like a DOM tree in an HTML file, and then transform
that AST into a control flow graph, and finally a bytecode is produce
On Sun, Jan 6, 2013 at 9:05 AM, Nac Temha wrote:
> Hello,
>
> I want to learn working principle of python as broadly. How to interpret the
> python? For example, what is pyc files and when does it occur?
> Can you explain them? Thanks in advance.
The pyc files aren't really a philosophical point