Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #36217 > unrolled thread

Re: Python programming philosophy

Started byChris Angelico <rosuav@gmail.com>
First post2013-01-06 09:15 +1100
Last post2013-01-06 09:15 +1100
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Python programming philosophy Chris Angelico <rosuav@gmail.com> - 2013-01-06 09:15 +1100

#36217 — Re: Python programming philosophy

FromChris Angelico <rosuav@gmail.com>
Date2013-01-06 09:15 +1100
SubjectRe: Python programming philosophy
Message-ID<mailman.151.1357424129.2939.python-list@python.org>
On Sun, Jan 6, 2013 at 9:05 AM, Nac Temha <naccttemha@gmail.com> 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, they're just a
cache of the compiled versions of .py files - the assumption being
that if you import it as a module once, chances are you'll import it
again later, and libraries tend not to change much.

For the philosophy of Python, type this at the interactive prompt:

import this

ChrisA

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web