Re: Britney Spears nude

2005-09-15 Thread Ian Osgood

Jeremy Jones wrote:
> Will McGugan wrote:
>
> >Tim Peters wrote:
> >
> >
> >>[john basha]
> >>
> >>
> >>
> >>>send me the britney nude photos
> >>>
> >>>
> >>Because they're a new feature, you'll have to wait for Python 2.5 to
> >>be released.
> >>
> >>
> >
> >She has just spawned a child process. Give her to Python 2.6 to get back
> >in shape.
> >
> >
> >Will McGugan
> >
> >
> daemon process, no doubt.
>
>
>
> JMJ

Wouldn't Natasha Kinski be more apropos for this newsgroup?  (In case
Python needs a poster girl...)

http://snakeskins0.tripod.com/eden.html

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Which kid's beginners programming - Python or Forth?

2005-06-29 Thread Ian Osgood
Forth clarifications below...

Rocco Moretti wrote:
>
> So for Math you'd do something like:
>
> y = b + mx + cx^2
>
> IIRC, for Forth it would be something like (please excuse the mistakes
> in operator notation):
>
> x 2 ^ c * m x * + b + 'y' setvar

Assuming these are all VALUEs:

  x DUP * c * m x * + b + TO y

> [Portability]

Much Forth code you find on the net is written to the ANS standard, and
is thus portable.  Free standard Forth systems are available for all
platforms.

> There are ANS and IEEE standards for Forth, but official standards tend
> to leave things implementation dependent, especially in platform
> specific things like file access.

Standard I/O and file I/O are part of the ANS standard.

> To further compound the issue, a Forth
> system tends to be self contained and insular - interaction with the
> surrounding environment may be minimal at best. Python, where possible,
> tries to shield the user from platform specifics, while still allowing
> full access to the environment. There are a number of Python bindings to
> C libraries which give near complete control to the desktop/screen/sound
> system, etc. Forth-bound libraries will likely be rarer, and again,
> interpreter specific.

That is unfortunately true.  There are FFI (foreign function iterfaces)
available for the most popular Forth systems, but how they work is not
standardized.  Forth has nothing like the module libraries of Python.
Graphics, object-orientation, and data-types are all available or
easily implemented in a particular Forth, but those batteries are not
included as they are in Python.

Ian

-- 
http://mail.python.org/mailman/listinfo/python-list