Connecting Tech Pros Worldwide Forums | Help | Site Map

Re: Programming Languages Decisions

Terry Reedy
Guest
 
Posts: n/a
#1: Aug 18 '08
Quote:
This report is intended for any computer programming experts who
would like to propose that their favorite programming language is the one
that should be used for the potentially important application that is being
discussed here.
I believe more scientists are happy programming in Python than Perl.
Python reads like 'executable pseudocode'. It is, I believe, easier for
most people to read and understand than Perl.

Rather than explain further, I suggest that you visit python.org and
read some of the tutorial to see what *you* think.
http://docs.python.org/tut/tut.html

tjr


E.D.G.
Guest
 
Posts: n/a
#2: Aug 19 '08

re: Re: Programming Languages Decisions


"Terry Reedy" <tjreedy@udel.eduwrote in message
news:mailman.1807.1219098125.922.python-list@python.org...
Quote:
Rather than explain further, I suggest that you visit python.org and read
some of the tutorial to see what *you* think.
http://docs.python.org/tut/tut.html
My original programs were mostly in Basic. When it became obvious that I
needed a more powerful language I took a look at Python, Ruby, and a number
of other languages.

To get started with this work I decided to go with Perl because it will do a
lot of things and is highly flexible. And, it got the job done. But now
that this application is up and running I am trying to collect opinions
regarding what languages more serious programmers might want to use with
future work for the application. And for independent researchers, Python
might be the one they would choose. For government and university
researchers who have more resources and their own computer programmers
available it is sounding like one of the "C" family of languages might be
the one they would like.

How is Python with graphics?

Terry Reedy
Guest
 
Posts: n/a
#3: Aug 19 '08

re: Re: Programming Languages Decisions


Quote:
How is Python with graphics?
It depends a bit on exactly what you mean, but there are 3rd party
packages for just about everything. Ask a specific question, parhaps in
a new thread, and you should a specific answer, or more.

Lie
Guest
 
Posts: n/a
#4: Aug 19 '08

re: Re: Programming Languages Decisions


On Aug 19, 1:45*pm, "E.D.G." <edgrs...@ix.netcom.comwrote:
Quote:
"Terry Reedy" <tjre...@udel.eduwrote in message
>
news:mailman.1807.1219098125.922.python-list@python.org...
>
Quote:
Rather than explain further, I suggest that you visit python.org and read
some of the tutorial to see what *you* think.
http://docs.python.org/tut/tut.html
>
My original programs were mostly in Basic. *When it became obvious thatI
needed a more powerful language I took a look at Python, Ruby, and a number
of other languages.
>
To get started with this work I decided to go with Perl because it will do a
lot of things and is highly flexible. *And, it got the job done. *Butnow
that this application is up and running I am trying to collect opinions
regarding what languages more serious programmers might want to use with
future work for the application. *And for independent researchers, Python
might be the one they would choose. *For government and university
researchers who have more resources and their own computer programmers
available it is sounding like one of the "C" family of languages might be
the one they would *like.
>
How is Python with graphics?
pygame for graphic with SDL library (e.g. fullscreen apps, hardware
accelerated)
Tkinter for basic GUI that can run on any python with no dependencies
(except python vm)
wxWidget, etc for more advanced GUI and if you allow dependencies
E.D.G.
Guest
 
Posts: n/a
#5: Aug 19 '08

re: Re: Programming Languages Decisions


"Lie" <Lie.1296@gmail.comwrote in message
news:fda4a293-d33c-4c72-9d08-52d9442c7a32@i24g2000prf.googlegroups.com...
Quote:
How is Python with graphics?
pygame for graphic with SDL library (e.g. fullscreen apps, hardware
accelerated)
Tkinter for basic GUI that can run on any python with no dependencies
(except python vm)
wxWidget, etc for more advanced GUI and if you allow dependencies


Thanks for the comments.

Closed Thread