What didn't bother me about Perl: dollar signs and curly braces. In fact, I found it harder to figure out the Python code structure because of the indents-with-no-curlies and the weird "if I am main" stuff at the top.
What did bother me about Perl: having to say or die, and I suffered at the hands of Perl's clumsy filename parsing libraries. How many times should one write open without or die? Not many. Then again, I don't want hash lookups to throw an exception when the element doesn't exist, so DWIMmery means inconsistency.
Clumsy filename parsing libraries? Yes. The os.path library seems so much more aimed at what people actually want to do than the fugly File::Spec and File::Basename. In particular, the acts of removing directories and extensions are easy in Python and hard in Perl. Perl makes you use a regular expression to describe suffixes. Oy.
Python turned out to have its own weird idioms. You can treat a string like an array, subscripting into it. I initially wrote my code to have an array of lines, thinking this must be how the file was read. Nope. And because accessing an nonexistent element of a hash throws an exception, Rael used an idiom where you catch that exception to deal with the case where the element doesn't exist. I prefer Perl's more direct if (exists
Of course, Rael may well be writing illiterate chicken-scratching Python (I could believe it, having seen his Perl and PHP
Next on the Fair and Balanced(tm) Flame News Channel, I try vi and find it lacking! We retort, you deride!
--Nat
splitext is cleaner? (Score:3, Informative)
So yes, the default for python looks cleaner; but it's less flexible. In the best of all worlds: perhaps File::Basename::fileparse should default to the pattern "\..*" to be more DWIMy.
Come to think of it, is File::Basename that fugly as-is? Wouldn't something like:
($junk, $component, $flavour) = fileparse($file, "\..*");look clearer than:($component, $flavour) = $file =~ m{^.*/(.*)(\..*)$}; # extract suffix(speaking as somebody who knows no python; and hasn't used fileparse much. Maybe you had a reason to avoid fileparse I didn't see!)
-DA [coder.com]
Reply to This
uhmmm... (Score:2, Insightful)
Was that script supposed to work? It chokes hard on a perl -c. Mostly from not declaring variables. It also has a syntax error on this line
$page = sprintf("\n";(missing left bracket)
And interesting look at perl and python none the less.
Yay Python (Score:2)
My complaint about the python code is that __main__ stuff. It's just not needed at all in that script. It's only needed in the case you have a module and you want it to do something if it's executed as well.
But then again, I love the idea of the language actually forcing you to be consistent with yourself when you're indenting. Most of the complaints I see about python state that it forces you to indent according to a certain set of rules. This is crap. All you h
Perl v. Python (Score:2)
My first impression, after reading each in the browser for about a second each:
Re:Perl v. Python (Score:2)
Re:Perl v. Python (Score:2)
Re:Perl v. Python (Score:2)
That particular block comment is special. Python associates it with the class object as a special documentation string (__doc__, iirc).
Re:Perl v. Python (Score:2)
-Dom
Re:Perl v. Python (Score:2)
Then the files aren't really equivalent. Python's """ foo """ multiline comment construct is more equivalent to Perl's POD, not to heredocs.
Now if you want to complain about the readability of POD, that's one thing, but it's not fair to criticise the Python script for using the language's documentation mechanism when the equivalent comment in the Perl script would
--
DO NOT LEAVE IT IS NOT REAL.
Re:Perl v. Python (Score:2)
I'm not criticizing the script, I'm criticizing the language.
This isn't about docstrings vs. comments, or Pod vs. triple-quoted strings. It's about making different things look different. The combination of triple-quoted strings and their use as docstrings hurts readability because you have to parse them t
Fatal (Score:1)
---ict / Spoon