Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^2: Perl vs. Python: Looking at the Code

by MonkOfAnotherSect (Sexton)
on Sep 02, 2005 at 04:53 UTC ( [id://488551]=note: print w/replies, xml ) Need Help??


in reply to Re: Perl vs. Python: Looking at the Code
in thread Perl vs. Python: Looking at the Code

*delurk* This really isn't the place for anything vaguely indepth, but:

There's also a slight whiff of Java about when I code in Python
If your Python feels like Java you're probably not using it correctly - I suspect that you're using range() for indexing. If you're using range(len(foo)) use enumerate() instead. I also suspect you haven't been using generators, iterators, and listcomps as often as you should have been.

In particular, it feels too far removed from closures.
Hmm... Python has closures, just not anonymous ones (though because strings and numbers are immutable and one has to store variables in a mutable object (list or dict), classes - or in some cases generators - may be preferred).

Regarding print, if you're using lots of prints terminating in commas, your code probably isn't very Pythonic...(trailing comma is likely to be removed in 3.0)

Variable interpolation is as painful as C's (though you can use string.template for interpolation closer to Perl's)

Anyway, have fun with Ruby ;-) *relurk*

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://488551]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (3)
As of 2024-04-25 23:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found