Tagged Questions

2
votes
4answers
263 views

Can I use Perl's map with an array slice?

I'm just trying to shorten a line of code that assigns HTML::Element->as_trimmed_text from an array of HTML::Elements to some variables - pretty standard stuff like: my ($var1, var2) = ...
1
vote
1answer
89 views

Referencing the ith element of each list in a 2d list

Take a 2d list. I want to make a new list with only the ith element from each list. What is the best way to do this? I have: map(lambda x: x[i], l) Here is an example >>> i = 0 ...