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

prev 1 2
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 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 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

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

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 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 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 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 -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 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
prev 1 2

Your Answer

Get an OpenID
or

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