(Untitled)

Mar 10, 2008 23:47

i've been playing with python lately, and i have a few thoughts ( Read more... )

Leave a comment

Comments 3

iskander9999 March 11 2008, 08:07:36 UTC
So, two things that bug me about python, from the little I've used it.

1. the open function is in the global namespace, but the rest of the file-related functions are in a File class.

2. the string join is implemented as a method on the separator string.

Both of those strike me as really dumb design decisions... And they bugged me too much to want to look into it much further.

My implementation of map in perl is pretty decent, though. Though it's more of a distributed processing interface than a parallel processing interface. Since it sits on top of our cluster management software, etc. It's pretty neat, I think. I need to implement reduce next, though that's not as useful (to me). Most operations I need to implement tend to be 1-1.

Reply


l_strange March 11 2008, 15:33:50 UTC
ruby

You know you want to. Come on...

Reply


tony_m March 13 2008, 02:04:20 UTC
I have thought many times in the back of my mind to check out Python.

However, if white space counts, count me out.

Reply


Leave a comment

Up