http://qs321.pair.com?node_id=156429


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

We weren't talking about array concatenation, but if that's what you want to do:
array = array + list
I could do the same with Perl:
@array = (@array, @list);
But I don't see how that helps your case. Perl's push is shorter than either of these:
push @array,@list;
And Python's append() would also be shorter:
array.append(list)

But from your previous comment I presume that append() will not accept a list as a parameter. I think I probably want extend() for that last example.

Of course, the length comparisons vary, depending on your variable names and your willingness to sacrifice legibility. But I don't think that's an argument that anybody wants to make.

Slightly offtopic: I'm just amazed that Python allows more than one way to do something. I thought that was supposed to be evil or something...

buckaduck