vote up 2 vote down star
4

I've gotten bored of hearing responses along the basic lines of eek! php! etc. when discussing programming. So I've decided to learn another programming language. The ones I'm looking at right now are Ruby, Python and Perl. Any reasons I should pick one over the others?

What I'm looking for (most to least important):

  • Good tutorials
  • Easily available tools to use (syntax highlighters etc.)
  • Runs on Windows
  • Easy to learn

Notes:

  • I know PHP and Java, and the basics of C++, C# and VB.NET .
  • Of these, I tried Ruby before but it just wouldn't install on my computer (Don't know why)
  • My web host supports Perl and Python but not Ruby.
flag

closed as subjective and argumentative by Greg, Juan Manuel, Leon Timmermans, brian d foy Feb 17 at 17:31

10 Answers

vote up 4 vote down check

It depends what you are trying to do, and why you want to learn it.

If you are just looking for an "expand my mind" type language, I would say go Ruby. The language focus on blocks and meta programming will push your comfort zone if you haven't touched anything like that before.

If you are looking for a general purpose language, go python. At this point, ruby is mostly "thing thing that powers rails", while python has been around for a very long time, and has alot of libraries written for it that ruby just doesn't have. It is a highly productive language with a more conservative take on things like sugar and monkey patching, which makes it less wacky and fun, but more practical for large scale development.

If you are looking for a web language, go ruby. The momentum around rails means there are things it is getting, or have gotten, that will not be available for python frameworks for awhile (kernel threads, threadsafe framework, something resembling an app server). I actually find Django is my favorite web platform out there, but rails is probably the best bet right now.

If you are looking for a scripting language, go Perl. It is ubiquitous on the UNIX platforms, and has been around forever, so there are tons of libraries available for it.

link|flag
5  
None of this is true, per se'. Perl has all the metaprogramming capabilities of Ruby, and many more web-related libraries than both Python and Ruby. It also executes faster, not that that matters. – jrockway Feb 17 at 14:18
I'd argue that Python is atm. just as viable as Ruby with at least 3 major web stack frameworks (e.g. Django, TurboGears & Pylons) in the wild as opposed to RoR. Coupled with (arguably) cleaner and better structured syntax, I'd go for Python any day of the week ;) – Roland Tepp Feb 17 at 14:30
5  
Spoken as someone who maintains many large Perl applications (and 40 CPAN modules), I find Perl to be perfectly easy to maintain. If you write bad code, sure, it's hard to maintain. But I have yet to see a language that makes bad code easy to maintain, so Perl is not really much different here. – jrockway Feb 17 at 15:34
5  
@Matt: maybe you have the maintainability of a bowl of spaghetti. Languages don't write unmaintainable code---people do. – brian d foy Feb 17 at 21:07
1  
If you think other languages don't have 20 different ways to do something, you have obviously not written much code. Also, I don't buy your argument. It's easy to understand code even if it's not done exactly like you would do it. If you're dumb, it's unmaintainable, but... – jrockway Feb 18 at 13:24
show 6 more comments
vote up 0 vote down

I would just like to point you to this same question that was asked (back in 2002... and still receiving comments!) with example implementations in each language.

http://mjtsai.com/blog/2002/11/25/perl_vs_python_vs_ruby/

link|flag
vote up 18 vote down

Don't just write Perl off as "a scripting language". It is a fully-featured programming language which has been used to write many large-scale, successful applications, both on and off the web. It has widely-used, mature web application frameworks, ORMs, etc. available via CPAN - there's just the minor problem of deciding which one to use, which can be tricky if you're not involved in the Perl community. (Coming from PHP, I'd recommend that you look at the Mason framework if you try Perl. Mason is based on the same general "code embedded in HTML" paradigm as PHP, but done right. Or at least as right as that design can be done.)

However, if your reason for leaving PHP is that you're "bored of hearing responses along the basic lines of eek! php! etc.", then Perl may not be the right choice. You'll get tired too quickly of people trying to tell you that Perl is dead/dying, looks like line noise, is write-only, etc. Although it's a great language today, it is still haunted by the ghosts of poorly-written code from long, long ago.

link|flag
vote up 7 vote down

I recommend Python.

  • Good tutorials: official documentation is quite good. There is good free book Dive Into Python. Following the links from this question you'll find a lot of other books.
  • Easily available tools to use (syntax highlighters etc.): Well, you can use Notepad++, powerful IPython console or PyDev for Eclipse IDE.
  • Runs on Windows: Easily =)
  • Easy to learn: it is a language for pleasant programming. It is really nice. It is so easy to learn that some recommend it for beginners to study. But it is powerful enough for real tasks as we can see from success stories.
link|flag
The freely available django docs are also absolutley phenomenal – Matt Briggs Feb 17 at 15:11
I'd add that Python has lots of libraries available. – Rodrigo Feb 17 at 16:14
Yes, it seems that there's a library for almost everything. – Rorick Feb 18 at 9:48
vote up 3 vote down

for Python

easy windows installation http://www.activestate.com/activepython/

great free Editor with syntax checking and higlighting http://www.activestate.com/komodo_edit/

Should be easy to learn http://python-history.blogspot.com/2009/01/pythons-design-philosophy.html

and plenty off great free tutorials books http://wiki.python.org/moin/BeginnersGuide and also google

Also you can try them all and find which one suits you best.

link|flag
And for Eclipse users, Pydev is here. pydev.sourceforge.net – Rodrigo Feb 17 at 16:14
vote up 1 vote down

Have you tried using the one-click ruby installer? I've never had any problems using that on multiple machines.

As you're coming from PHP I would suggest going with Ruby as then you can use Ruby on Rails which is one of the best web development frameworks out there.

link|flag
vote up 0 vote down

All 3 are good choices.

Ruby and Python are better for web applications. Perl is a simpler language, which makes it slightly superior for string/stream processing and fast, short code.

If you can't get ruby working, then you're simply down to 2. Nothing is so magical that it's worth a week of headaches to get working.

link|flag
Wow... I don't think I've ever seen Perl called "simpler" than, well, just about any other language that's in real use before. Thank you for not writing it off as an overly-complex mess like so many are quick to do. – Dave Sherohman Feb 17 at 14:16
1  
It's simpler as in: Oh look, you need just one line, as opposed to the line 5 in Python. That's simple! – dehmann Feb 17 at 14:43
1  
@dehmann Sure, but that one line can easily be written in a way that makes it terribly difficult to maintain. Perl is one of the very few languages where one line of code can make your life hell. Python basically forces you to write it clean the first time. I'm not denying that you can write a nasty line of Python, but it's a heck of a lot harder to do than in Perl :). Appologies for replying to an old thread, I just ran across this in a google search. – Benjamin W. Smith May 20 at 17:16
vote up 9 vote down

It's dynamic programming languages, I recommend learning concepts rather than a language per se.

What is prototyping? What is dynamic typing? What is meta programming? Why are dynamic programming languages slower than statically typed?

Things like that should interest your more and I suggest you pick all three because they all have a certain quirks about them which are nice to have experienced.

See Kevin went about sharing the glory which is string manipulation in Perl. Python happens to be favorable to many people doing meta programming and well Ruby is just really hot because it was invented by a Japanese dude. Who doesn't love Japan?

link|flag
ruby is hot because that is what DHH chose to write rails on. – Matt Briggs Feb 17 at 14:04
To learn concepts, you also need to learn the languages that expose those concepts, so this is not really an answer per se. – Roland Tepp Feb 17 at 14:31
-1: learn language. Deduce concepts later from what you mastered. – S.Lott Feb 17 at 14:33
@S.Lott - Really!? I guess it's a matter of opinion. I clearly meant that it's good to know a programming language but it's event better to know what it means to program in that language. – John Leidegren Feb 26 at 7:55
vote up 6 vote down

Personally, I love Perl. I use it to get away from programming C#, and I find it useful when I have to drudge through text files (logs etc) and pull information. There are several useful books (oreilly) and sites dedicated to learning it. Besides you have to love a language when people have referred to Perl programmers as the Anarchists of the programming world (Dreaming In Code)

link|flag
1  
Dude, it's "Perl", not "PERL". – Dave Rolsky Feb 17 at 14:33
vote up 0 vote down

My previous question may help.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.