Tagged Questions

5
votes
8answers
710 views

How can I print only every third index in Perl or Python?

How can I do a for() or foreach() loop in Python and Perl, respectively, that only prints every third index? I need to move every third index to a new array.
4
votes
3answers
232 views

Perl array manipulation

Is there a single line in perl which does some magic like this. Array = [100,200,300,400,500]; percent = 50% new_Array = [50,100,150,200,250]; That is, I give an array and specify a percent. And ...