An Interview with Guido van Rossum
oreilly.com
An Interview with Guido van Rossum
1–7 of 7 posts
Re: An Interview with Guido van Rossum
#2That article is pre 2001
Re: An Interview with Guido van Rossum
#3That article is pre 2001
That explains this baffling part of the conversation... Squeak and Disney?
Willison: Yes. Something called MEL . And something called Squeak, which is being created at Disney.
van Rossum: Isn't Squeak a Smalltalk derivative?
Willison: Yes. It's used in movie production and 3D graphics, as is MEL. It seems like there's an explosion of small, single-purpose languages.
Re: An Interview with Guido van Rossum
#4I have only a very rough knowledge of Python. In which kind of software development would you choose Python and why?
Re: An Interview with Guido van Rossum
#5I have only a very rough knowledge of Python. In which kind of software development would you choose Python and why?
Short answer: In most places you would otherwise use Perl, Ruby, C, C++, or Java. It's not as fast as C or OCaml (except in programs which are almost entirely calls to libraries, e.g. string-heavy stuff), but you can rewrite the hotspots in C later (if you ever actually need to), and the overall development time will be much shorter. Even if you never use it for anything else, Python is an excellent prototyping language.
For a more in-depth answer, look at these:
Also, see the standard library's module index, which is one of the places the language really shines: http://docs.python.org/modindex.html
Re: An Interview with Guido van Rossum
#6Guys, please stop posting old stuff...
Re: An Interview with Guido van Rossum
#7Wow this is old.