Computer Programming for Everybody Using Python 20
Ursus Maximus writes "Python City, formerly known as the Python Liberation Front, is an attempt to further Guido van Rossum's dream of making computer programming accessible to any intelligent person. Featuring more than 20 detailed reviews of programming books,presented from a newbie's point of view, as well as links to 14 tutorials for learning Python, the site is a good starting point for folks interested in scripting. In addition, you will find an online interactive script for Choosing Your Own Programming Language, based on one's own preferences, expectations, and priorities, While the script is written in JavaScript, there are no apologies for any perceived bias towards Python ;-)))). You will also find several interesting and fun GPL'ed scripts such as askMerlin, an online, artificially intellgent Oracle; DecisionAnalysis, to help you make up your mind; and myGale, a webcrawler to routinely collect all online articles about Python. Add in a dash of Monty Python humor and newbies will find learning Python to be not only painless but indeed, fun!"
Re:delphi (Score:2, Interesting)
Cool site but skip the rant under "Farnham's Freeh (Score:2, Interesting)
The choose your language script is fun, but hopelessly biased towards Python. For anyone interested in learning Python, though, the links to so many tutorials and book reviews could be priceless.
I gotta admit, Python is a retty good language; as easy to learn as any I've ever found, yet powerful.
Re:Cool site but skip the rant under "Farnham's Fr (Score:1)
Where is Perl?!? (Score:2, Interesting)
Alright, so Perl is a language there, and gets a score, but for all my trying, I can't get it to be the number one language for me, what gives?
Other than that, this is useful information, a good site.
Re:Where is Perl?!? (Score:2)
Python is great for training (Score:3, Interesting)
The results were quite simply amazing: some of the more precocious students were writing GTK applications by the end of the semester. The slower students stuck to the prescribed assignments (the usual checkbook balancing software and such) - yet nobody had any serious problems learning the language because it was very intuitive. At the end of the course, we had the students design and implement a piece of software on a written exam, and I am pleased to say that nobody produced less than C-grade work.
freebsd guy
Re:Python is great for training (Score:1, Funny)
Re:Python is great for training (Score:1)
but some of it was C++ grade.
Regarding the online script (Score:1)
python as the language for you. selecting the *minumum* also return python.
How can python be on both extremes of language criteria?
something is flawed here.
Re:Regarding the online script (Score:1)
Re:Regarding the online script (Score:2, Funny)
Also, there is a combination of settings that will mean Visual Basic wins, although Python and C are the only ones that are "best in their category".
Lisp/Scheme (Score:2)
See Kent Pitman's interview [slashdot.org] for more information on Lisp. Scheme is a similar language or a Lisp dialect. It's very easy to learn if you're coming at it with no prior programming experience, but its syntax is different from what most programmers are used to. That's why it has a hard-to-learn reputation among programmers. Also because it's typically used in Computer Science courses where difficult concepts are taught.
It comes up first only because the JavaScript code for that page has no provision for ties.
A write-only language... (Score:1, Insightful)
Python Powered Freshman (Score:1)
Not only would it be much easier for students to move into C++ after having learned Python, but students would also be able to easily move into any language such as Java, etc. And just for the record, I find it much easier, funner, and faster to program using Jython than Java itself
Re:Python Powered Freshman (Score:1)
More than only the JVM (Score:1)
Unfortunatly nearly all VMs used stack oriented code, e.g. SmallTalk, UCSD Pascal, LISP.
So the Parrot VM and the new Internet C++ (discussed on
He he, the article referes to the 68k emulator in PPC.
And it claimes that register based VMs can interprete bytecode faster than stack based VMs.
In principle thats true. Over ten years ago I wrote two interpreters. Both basicly only could evaluate expresions like a + b * c, and so on.
I invented a stack based assembler and a register based assembler. Then I wrote an interpreter for each. The register language was interpreted about 30% to 50% faster than the stack based language.
BTW: I used UCSD Pascal, a stack based VM, on an Apple ][.
However meanwhile I discovered some tricks how stack based operations are equaly fast, or if you take into account the opcode size of register based code versus stack based code (the name byte code comes from the fact that stack based code often only needs one byte per operation) and the memory accesses for that I think both concepts are equaly fast.
The real problem comes when the code is compiled to native code. Then the mapping between virtual registers and hardware register is often more intuitive than the mapping of stack positions to hardware registers.
However, for both the community of compiler crafters has well understood approaches.
Unfotunatly the language designers, cough cough, tend to ignore academic knowledge
angel'o'sphere