comparation of Python with other languages

Stephane SOPPERA soppers3 at cti.ecp.fr
Sun Jan 20 08:33:46 EST 2002


Sinule wrote:

> Hello I am a student and I am developing a project of image processing. I
> would like to see a comparation of a Python language with other languages
> (C++, Java..) in order to decide what interface use to develop my projetc. I
> have seen the Python home page comparation but it dont say any of speed or
> processing capacibility of language.
>
> What is your opinion about if it is a good idea to develop my project with
> Python?

Warning: python is a interpreted language. It's slower than what you can do
with a C or C++ compiler.
Java is a semi-interpreted language: much slower than C.

You can choose languages such as python or java if you're only working on
_small_ pictures (memory problems) and if your image computations are not to
complicated (python and java are slower).

The only reasons you should prefer Python or Java to C is the learning time
(time you spend to learn how to program), and the developpement time (it takes
more time to write C and Java than Python). (there's also an issue of
portability, but I don't know if you cares).

--
Stephane SOPPERA
http://stephane.soppera.free.fr






More information about the Python-list mailing list