vote up 33 vote down star
16

Okay, so I'm finally making the jump into scripting languages and I have decided to focus on either Python or Perl. The problem is: I don't know which to cut my teeth on.

Most of my programming experience is in C, Java, and C++. There's no specific task I would be learning Python/Perl for, other that possibly applying it to my dev work to make life easier in general.

What do you think? Which do you use? Is one more industry relevant than another?

flag
show 2 more comments

40 Answers

1 2 next
vote up 3 vote down

I don't use either, but in my dabbling with both, I've found Python to be a language that makes a lot more sense to me.

Perl is a good language, but Python is definitely the fad language of today.

link|flag
vote up -2 vote down

Perl is quirky and archaic; Python is a much cleaner, more modern language.

link|flag
1  
And much, much easier to learn. – S.Lott Sep 29 '08 at 19:26
1  
It may take a while to learn some of the quirkier features but you can be productive in perl very quickly. – Mark Baker Sep 30 '08 at 14:24
vote up 0 vote down

Python is more verbose, and by extension more easy to maintain.

Perl is very concise, and very quick to do useful tasks with. But it is more suitable for throwaway code rather than maintainable systems.

link|flag
1  
Verbosity does not in any way imply maintainability, – JesperE Sep 29 '08 at 19:13
1  
Perl Regex's are more maintainable. stackoverflow.com/questions/18642/… stackoverflow.com/questions/51224/… – Brad Gilbert Sep 29 '08 at 20:32
show 1 more comment
vote up 7 vote down

I really like Perl, after using it for a few years. It's really powerful, especially for text processing. It has a really strong set of libraries available through CPAN. It is a little quirky however, and Perl 6 is going to change things a lot. Perl 5 however is very solid and proven.

Python, however, I don't have a lot of experience in, but I suspect that it is the better language to learn today as it gains popularity.

link|flag
vote up 5 vote down

I agree that Python is the langauge of today and might be better but I would also consider the environment you work in.

In my case Perl is common on all our servers and it's not always easy to get Python installed. Also, most people in my organization know perl and not python so if someone needs to give me a hand or maintain a program when I'm on vacation again Perl will be the better choice.

link|flag
vote up 3 vote down

For humor, I refer you to: http://scott.yang.id.au/2003/08/python-vs-perl-according-to-yoda/

Both languages are used in a large number of scenarios. Perl is quite popular as a config and control language in IT departments. However, Python is used by many companies for prototyping larger applications, and optimizing their apps w/ C/C++ later. Google is an example of such a company.

Personally, i find Python intuitive, and while I code in .Net, my love and my easiest learning is w/ python. If you need something to cut out the syntactic cruft so you can think about problems, go with python.

link|flag
vote up 0 vote down

Both are good languages, but if you only start learning one of them now, go for Python. It currently has much more boost behind it, and much more new and cool stuff is being developed in Python than in Perl. By choosing Python, you're not missing anything because it can do anything Perl can do.

If you have specific application needs, specify them - because then the answer may change. Otherwise, just download the Python distribution relevant to your platform and read the tutorial.

link|flag
vote up 3 vote down

Python is quickly replacing perl for many as their language of choice. But that's partly because perl went for a very long time without a major update. I've heard that perl 6 could change this some. But I think I'd still go python.

link|flag
vote up 0 vote down

Perl is also in a weird state of flux between versions. Perl 5 is heavily used, and Perl 6 has been in development since Larry Wall announced it in 2000! Perl 6 looks VERY different and I can't imagine an upgrade path will be painless once it finally arrives.

On the other hand, Python has been on a very defined path for Python 3.0 and we will see a release shortly.

link|flag
1  
You're misunderstanding the role of Perl5 vs. Perl6. It's not your fault, it's the Perl6 marketing's fault: They're totally different languages. Perl6 won't replace Perl5. Perl5 lives happily alongside a future Perl6. Using Perl now does not mean you'll be stuck in five years with no upgrade path. – tsee Sep 30 '08 at 9:50
show 2 more comments
vote up -2 vote down

Perl has a much easier regular expression mechanism to use and has been around for a while, having more mindshare and libraries.

Python is better for software engineering.

link|flag
1  
No, regular expressions in python are a lot more hassle. A substitute regex such as 's,foo,bar,gi' is split up in python, you have to enter the search string, the replacement string and any flags seperately. re.sub() doesn't even accept flags, so you are forced to compile the regex first. – warpr Oct 4 '08 at 2:09
show 1 more comment
vote up 15 vote down

I use perl and never learned python. But I come from a background of shell scripting with awk/grep, and C/C++. That made perl just far too easy to pick up, as it has nearly all the power of all that came before, and ties it together really simply.

So, it's really hard to answer without a lot more context: do you have any perl/python tooling/programmers available to you at work? Perlmonks.org, for example, is great as a language-specific site, though it's still better to have someone to talk with right in front of you instead of waiting for responses. What do you want to accomplish? I know you said you don't have a specific task, but I have always found it easier to pick up new skills by having a target in mind. I had little mini-projects that helped me learn C, C++, STL, Perl, and just recently SQL. They make it fun to learn, and anything fun is easier. So find a project that makes sense for what you're learning, and try it. The questions you come up with from there will propel you into whichever language you're learning.

link|flag
vote up 64 vote down

I have used both languages professionally and for fun.

I learned Perl around 2000-ish, and was a big fan for many years. I had never used a dynamic language before and was really impressed with how much more effectively and quickly I could write working code, compared to C.

Around 2002-3, I started to hear about Python a lot and glanced at it... the whole "significant whitespace" and strict type checking thing turned me off and I purposely ignored it for several more years. Eventually I found my Perl code was getting really unmaintainable, and seriously took up Python. I've never looked back. Python is basically dynamic language done right. One of the best things about it is that the standard library is extremely versatile (database, XML, JSON, math, etc.) and all those modules have a common interface and feel, which makes them easier to learn and use.

Eventually, Perl just got to be too much of a mess, I'm afraid. It's not really Perl's fault. They kind of made Perl up as it went along. No one knew what a dynamic language "should" look like or do when Perl was first released (pre-1990, I think). So it's got a lot of things oddly bolted-on, like variable scoping, file handles, and a very messy object-oriented system.

Perl 6 is supposed to be a lot cleaner but no less expressive. But it's taking yeaaaars for it to be ready. Why wait? Python's ready now and the much-anticipated 3.0 release is in beta.

PS- Perl's CPAN is indeed a very nice feature. Python has the Python Package Index (aka Cheese Shop) which is more or less the same thing. All ya gotta do is "easy_install packagename" to download, build, and install from it.

link|flag
3  
FWIW, I find that scoping for lexicals is one of the things that Perl got absolutely right in every detail. Block scope is variously broken in Ruby and Javascript, which is annoying enough, but the necessity of the hack for mutating closed-over variables in lambdas in Python is utterly indefensible. – Aristotle Pagaltzis Oct 10 '08 at 14:46
show 7 more comments
vote up 0 vote down

Python for sure. Perl is great for quick scripts that you will never look at again. iPython alone is more than reason enough to learn Python: http://ipython.scipy.org/moin/.

iPython allows you to examine any object by using tab complete (ala the unix command line) which makes experimentation super fast and fun.

link|flag
show 1 more comment
vote up -1 vote down

Reach for Perl under these conditions:

  • Memory use is critical
  • Low IO overhead is required (i.e. – many, many text files are being parsed)

Reach for Python under these conditions:

  • You need something that processes quickly (but isn’t memory intensive)
    • On the average, Python and Perl are neck & neck here. If you have more experience w/Perl, go for Perl. If you need something readable, go for Python.
  • You have an OOP OCD
  • You don’t know Perl, and you have some hefty processing to do (that isn’t memory intensive)
  • You’re making the step from static HTML to dynamic web pages cough, and you have a CS degree
link|flag
show 1 more comment
vote up 5 vote down

Compromise: learn Ruby. Ruby has a strong Perl heritage, with much of Perl's syntax and conveniences. While it is not as inspired by Python, it shares with Python a strong emphasis on Object-Oriented style.

link|flag
show 2 more comments
vote up 14 vote down

Perl is a fairly poor language to learn. Don't get me wrong - I like the language, and use it quite a bit. But for learning... Oh dear, where to start?

  • There's always more than one way to do something. Usually dozens. And many of them - quite frankly - are very bad ways to do it. As a new user not only is this complexity confusing, but you probably won't be able to figure out the hidden pitfalls until too late.
  • Perl has a confusing, cryptic, and very dense syntax. In the hands of an expert this allows for extremely powerful scripts to be written that fit into a line or two with a minimum of typing. For a novice, however, you may spend hours puzzling over some overly-clever trick in an example.
  • Perl doesn't enforce good habits. That's part of the attraction - you can do anything. This includes writing clear documented code adhering to good programming practices. It also includes writing absolutely unmaintainable "write-once read-never" code.

Python is just as powerful, but the syntax is much cleaner, and - I realize this is absolutely subjective - it's a bit harder to abuse. For example, the whitespace rules mean that you HAVE to indent and structure your code at least slightly sensibly, which is - frankly - a pretty good thing to enforce, especially when learning. Learning good habits early pays off. :-)

In short, while Perl is a great language, for learning, I'd recommend Python. (Ruby would also be a decent choice.)

link|flag
1  
I agree. If you just "love programming languages", you'll love Perl. It has sooo many neat quirks and tricks. But if you want to write something that actually works and is elegant and maintainable... Python. – Dan Sep 29 '08 at 19:11
2  
Well, it's true and not, you can write lousy and unmaintainable code in any language. While perl makes that more easy, you also need to think in python, it does not come for free... – André Sep 29 '08 at 19:30
1  
"Where to start learning Perl?" How about starting with book? ;) – potyl Feb 11 at 4:44
1  
Ruby is the sibling of Perl. They are alike. – jpartogi Jul 23 at 0:03
show 1 more comment
vote up 51 vote down

There are so many people praising Python here that I think I have to put a bit of counterweight here. :)

Maybe I'm a bit biased because I've been coding in Perl for so long, but I think this also allows me to give a better insight into the language. Many people are frightened of Perl because they saw a cryptic one-liner and think to know that Python is "cleaner". Here's what I think.

As some people already mentioned, Python is a very verbose language. It forces you to indent correctly. This doesn't mean that you can't indent Perl code nicely too, it just means that Perl still works if you don't. Pythons verbosity also makes single pieces of code more understandable. However, if you look at bigger Python applications, you'll find that being force to write simple things with much code distracts from the real important things. If you know Perl well, you'll thank God for the possibility to put simple things away in two lines or three or even a one-liner and put the spotlight on the important things, like business logic, which you're free to write as verbose as you feel like. If you know a natural language, one line of text is more understandable than 20 lines, saying the same thing, isn't it?

Perl is surely harder to learn than Python. And it takes longer to learn. After years of using it every day I still find cool features sometimes that I didn't know before, and that I absolutely love. It's a bit like Vim. ;)

Some people also claim that the Python community is more active and develop more cool new things. That's surely true. Perl people don't develop cool new things, because they've been developed years ago and are available from CPAN, ready to use.

To make things short: Python forces you to do things. Perl allows you to do things your way. You will do lots of errors in the beginning, because Perl doesn't say "do it this way, or it won't work!". While Python will make it easy for you in the beginning, Perl will allow you to be effective in the end. Plus (and this is why I love Perl so much), when you become better, you'll learn to love the freedom to express yourself with your code. Code is just art, after all.

link|flag
1  
Very insightful. I agree that the flexibility of Perl is powerful... but often not in a good way me, since I end up using some obscure delightful feature once, and then I'm unable to decipher it. It is a ton of fun though, but the maintainability/scaling issues really bit me. – Dan Sep 29 '08 at 19:37
3  
People keep calling Perl a "write-only" language, but in my oppinion that's just plain wrong. If you don't understand a feature, don't use it. I've never had problems reading code I once wrote. It's a completely difference thing with other peoples code though. ;) – jkramer Sep 29 '08 at 19:53
2  
"People keep calling Perl a 'write-only' language" I've heard that since 1997, still isn't true, maybe some day. – jettero Mar 4 at 20:46
2  
Dan - meaning no offense, but that is why comments were invented ;) When I use some overly crafty piece of Perl-ese, I always comment on it. – DVK Jul 8 at 12:33
show 3 more comments
vote up 10 vote down

On the technical level I would weight those two languages as more or less equal. But my bet is still with Perl - because of CPAN. It is experiment on the joint between technical, social and political and I think it have got a lot of balance right - and as show all the other attempts this is not an easy thing.

link|flag
vote up -1 vote down

Interesting :

link|flag
vote up 1 vote down

Guess it would be unfair to say you'd be better to learn both of them. Since I use both of them for work and for pleasure, I'll start with one major advantage of each:

  • Perl - Regular expressions. Most definitely the best language for quick text edits, string replacements, etc. After learning regexs in Perl, you'll understand it much better in other languages.

  • Python - Super quick modeling. Python could be useful to complete a task you're used to in C++/Java, in half of the amount of code (estimate), and 1/10th of the time (estimate). Sometime you'll stick with the Python result, and won't bother implementing it in a lower level language, since it's just good enough.

If you're doing more administrative tasks than other tasks - Perl it is. If not, and you have time for only one of them - Python.

Also, keep in mind that Perl's syntax is very much like C and Java, while Python is a whole different thing. Adding it to your resume would be a bigger plus than adding Perl.

Final note (don't want flame wars): every thing said is my humble opinion only.

link|flag
vote up 2 vote down
  • Python encourages code readability and maintainability. The significant white-space also appeals to my inner copy editor. Perl requires that you discipline yourself, or be satisfied with write-only code.

  • The Python standard library is excellent and, for the most part, well-documented. I don't remember how well Perl stacks up here. I do sometimes miss Perl's easy regexp handling.

  • Python has the Python Package Index. The widespread adoption of setuptools and easy_install as the package-management tools of choice, along with environment/dependency tools like virtual-env and zc.buildout, make for a powerful and comprehensive development, testing, and deployment system. I always found Perl's CPAN just barely comprehensible, often leaving me on the verge of tears as yet another dependency noisily failed to install.

link|flag
vote up 113 vote down

There's an awful lot of FUD here about Perl. One thing I've noticed is that Python folks seem to have a bit of a thing for bashing Perl, but you won't see that so much in reverse. The insistence that you can't write maintainable Perl is pure bullshit. Maintainable code comes from good developers following good development practices, and that can be done (or not done) in any language.

As a Perl guy myself, I have nothing against Python. It seems like a pretty good language with a strong community.

Both Perl and Python are fairly mature and featureful languages. I think Perl's CPAN beats Python's libraries by a fair bit, but OTOH Python has way more standard libraries, so you don't need to go looking for 3rd party libraries as often. Also, CPAN's expansiveness is a downside, as there's often many overlapping libraries for a given task, making finding the best one harder.

I'm surprised you didn't mention Ruby. I think it's another worthy language. It's less mature than either Python or Perl, and definitely slower, but it's got a lot of pluses too, including being "truly OO" in a way that Python isn't (and Perl isn't even trying for).

FWIW, if you're interested in Perl I'd strongly recommend checking out some of Perl's highlights on CPAN, including Moose, DBIx::Class, DateTime, etc. Of course, Python and Ruby also have particularly excellent packages that people will point to, like Rails, Twisted, Django, etc.

Disclaimer: I'm a Moose core dev and the creator of DateTime. But they do rock, and I know lots of people in the Perl community agree.

This actually gets to a secondary point. A language is much, much more than its syntax. In fact, syntax is the least of what makes a language. It's an ecosystem, and to truly appreciate a language you also have to take some time to learn about that ecosystem. Perl has a really amazing ecosystem and community. I bet Python does too.

To a large degree, you need to find the tool that fits your brain best. Perl and Python can do basically the same things, but they do them differently. Try both out (and try Ruby) and see which one works for you.

link|flag
1  
I think Python's "there's one way to do it" probably does help readability. But you can write readable Perl code, and it's not all that hard. I bet you can also write unreadable Python, and given how many crap-tastic developers I've seen, I bet it happens all the time. – Dave Rolsky Sep 30 '08 at 4:24
3  
Dan, Moose is much better than Python's OO. Much, much, much better. Yes, one way to do it makes things easy, but OTOH you might not have Moose without Perl's wacky flexibility. – Dave Rolsky Sep 30 '08 at 4:25
4  
"datetime" is a module that is part of Python's standard library, and I know it has been in there since at least 2.4. Is there any functional differences I am missing? I have used Python's datetime module and I am quite pleased with it. – Adam K. Johnson Sep 30 '08 at 13:15
2  
Also, for anyone curious, asking on irc.perl.org#moose is a great way to get a quick answer. – Dave Rolsky Oct 1 '08 at 15:07
2  
@doktaru, the perl DateTime module is years ahead of python datetime in terms of natural-language parsing; I'm a huge fan in that respect (though otherwise a Python guy; I haven't used Perl for almost a decade and hate hate hate its syntax). – Charles Duffy Oct 8 '08 at 17:44
show 9 more comments
vote up 33 vote down
Python 2.5.2 (r252:60911, Jul 31 2008, 17:31:22) 
[GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import this
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
>>> 

I'm a python guy personally. But I still need to give tons of credit to Perl. It runs just as much of the internet as apache and 2/3 of every data center. The CPAN has 12 different ways to do anything. And Perl people are just plain nice.

The people that say Perl is hard to read are being silly. The Perl they tried to read may have been hard, but I've paged through tons of Perl that was more readable than the python I write.

I think pythons major advantages are its interactive interpreter and docstrings (which can be easily printed from inside the interpreter), but for quick hacks on files, perl.perl.perl.

link|flag
2  
Perl has a nice REPL these days, Devel::REPL (on CPAN, of course). – Dave Rolsky Sep 29 '08 at 22:57
show 2 more comments
vote up 6 vote down

I've used Perl for several years, and have looked at Python a little but never really learned it. I'll offer a few random thoughts about Perl:

  • As others have said, Perl is a quirky language; personally, that's one of the things I like about it.
  • Because there's more than one way to do it, Perl is harder to learn than some languages. However, since you have a background in C, you shouldn't have trouble learning a way to do what you need.
  • Structurally, Perl is more C-like than Python is, from what I've seen. From syntax to curly braces to use of whitespace, Perl will probably feel more comfortable to a C/Java programmer.
  • Perl is not an object-oriented language. You can use Perl modules to do OO-like stuff, but Perl's object model is nowhere nearly as comprehensive as Java's.
  • Perl is so flexible that it's easy to get started with a subset of the language, and learn additional functionality later.

That last point is the most important, IMO. I spent nearly a year writing small scripts before I even knew what a hash was; after learning about hashes, I had a better way to handle data. It was more than a year before I tried regular expressions; after I learned them, I had a better way to process strings. I didn't understand how to use modules as objects until several years later; but when I did, I had a better way to organize my data. I've programmed with Perl off and on for over six years, and there are still features I haven't even looked at. As I learn them, my productivity will probably improve, but I am still able to get things done at my current level.

"There is more than one way to do it" allows programmers to advance at their own pace and comfort level. You might have a completely different way of solving problems than I do, and that might make your Perl code look cryptic to me, and vice versa. (That's probably the main reason Perl is so often criticized as being unreadable.) But Perl's flexibility puts the programmer in charge of how things get done.

link|flag
1  
"Perl is not an object-oriented language." - Considering Moose, I would put Perl on par with any other language for OO facilities now. In fact, Moose puts it ahead of many (most?). – Christopher Cashell Jul 17 at 18:59
vote up 19 vote down

Now that I'm done reading all the comments about how Perl is unmaintainable, write-only, and doesn't do OO, I suppose I could argue against them, but I've spent enough time screwing around on stackoverflow already. I really should get back to updating the Employee class to add new features that have been requested on the Perl web app I wrote last year and haven't looked at since. There's a little bit of a ramp-up time on getting back into a project that old, of course, since I no longer remember what I did back then, but it's perfectly clear once I look at the code.

If you already have good programming habits (as I did from many years of other languages before getting into Perl), there is nothing to fear from Perl.

link|flag
3  
...which applies to every language. You can write perfectly clear Perl and utterly unmaintainable Python. It has far more to do with the person who wrote the code than the language it was written in. – Dave Sherohman Oct 9 '08 at 11:36
show 1 more comment
vote up 17 vote down

I've tried Perl, Python, and Ruby. (I've taken a look at Neko, and groovy and beanshell, too.)

I started out in Perl. I learned enough to start using the "black magic" of source filters, symbol table manipulations, B and AUTOLOAD. Then I began to hear some complaints and comparisons from the Python crowd.

Then I noticed some of the same dissatisfactions I had with Perl echoed in Python enthusiasts. This turned into frustration with the idea that there really are too many ways to do it in Perl.

Python is touted as more aesthetic, but that's only true if you don't find yourself deep-diving and using the __<foo>__ methods and variables too often. There is no definite gain in aesthetics using num.__rmul__( otherNum ).

Python turned out to be no where near as "intuitive" as billed. And although, Python remains a acceptable language, I think the hype ended up influencing my decision to move on.

I met ex-Python rubyists bagging on Python much the same way that Python enthusiasts bag on Perl. So it only seemed justified in subjecting Python to the scrutiny upon it that they, as a body it seems, subject Perl to.

Ruby is more aesthetic in almost all syntax, and I found it to be a little more "intuitive". (Sigils have never bothered me.) But as mentioned above, Ruby is still rather slow outside of JRuby. I also don't like the sometimes arbitrary non-OO syntax in modules. Instead of using the behind-the-scenes names for the overloaded operators, you defined the operator itself.

Perl 6 will have something that Python and Ruby do not yet have, and that is the ability to invent operators. I have already played with this in pugs, and it's one of the things that can be afforded with having a language that understands grammars.

But the harshest criticism that can be leveled at Perl 6 is that it is practically "vaporware". Outside of that, though, enhancements for Perl 5 look to what has been codified for Perl 6 to include.

And the flexibility of Perl seems to suggest itself again. Perl Best Practices takes place of rigid rules about the best way to code. And where as Perl presented a daunting variety of OO paradigms, Moose is informally becoming the way to do OO.

link|flag
1  
For further reading about perl6, check out rakudo.org , the new home for perl6 development. They've come a long, long way in the last few months. With monthly release cycles, it's really easy to see the progress of the implementation, and boy does it look good! – Robert P Aug 5 at 23:28
show 2 more comments
vote up 3 vote down

I recommend Python: it may be my favourite language. It supports both OO and functional programming: you can do mind-blowing things in comparison to Java. Also, it is quite readable, has a rich library set, and has a sense of aesthetic in the community (called Pythonic).

As for use in industry, it is used by some major players: e.g. it is one of the few languages approved for use at Google. That said, Perl is probably used by more companies, as it was huge for years.

You didn't ask, but I would suggest Ruby and Groovy as other candidates. Ruby versus Python is a true dilemma (I've blogged that this is like choosing between a Porsche and a Ferrari). Groovy's advantage is that the syntax is similar to Java and you can use the familiar Java libraries; however, if you want something truly new, that might be a drawback.

link|flag
show 2 more comments
vote up 1 vote down

Perl, the language, is a mess. But perl, the interpreter/VM, has an edge over python in that it is stackless (the language's calling stack doesn't use the system stack). As a result of this, Perl can do real shared memory threads while Python cannot. There is a stackless python but it is experimental, not in the mainline source.

That is the most significant technical difference, and might not even matter that much anyway. Everything else is subjective, and a matter of personnal preference:

  • Perl has more libraries; Python has better ones. Edit: Perl's are more mature. For instance many Python programs at this time can't do SSL through HTTP CONNECT on a proxy.

  • More people know Perl; Python is used on more projects.

  • Perl has more documentation; Python's more usable.

  • Perl is installed on almost every *nix system; Python is a central part (system scripts, configuration dialogs) of most Linux/BSD distribs.

  • You can find third-party Perl APIs to almost anything; almost everything provides Python APIs.

Disclaimer: YAPH.

link|flag
show 1 more comment
vote up 3 vote down

If you want same readability in Perl as in Python, use perltidy from CPAN - you will get it automatically instead of doing it manually in Python.

If you want to get a job read this comparison: Perl, Php, Python and Ruby: Whats More Popular in the Corporate World

link|flag
show 2 more comments
vote up 1 vote down

As a Perl fan, here's a few points:

If you know C and Unix, Perl will probably be a bit easier to get started with.

Perl has really good library support.

Perl's great for short scripts. I never write anything in bash any more.

You can get both Perl and Python on any platform you're likely to be computing on, but Perl is perhaps a touch more likely to already be there. (The downside to this is that the system Perl is more likely to change versions out from under you - happened on AIX once, and a badly written Perl program simply stopped running.) However, Python is more easily rewritten to sit on different platforms. I don't know of Perl analogs to Jython and IronPython (JVM and Microsoft's CLR respectively).

link|flag
show 2 more comments
1 2 next

Your Answer

Get an OpenID
or

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