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.
|
feedback
|
|
Python
Perl
| ||||
|
feedback
|
|
Perl: As with draegtun's answer, but using a count var:
| |||||
feedback
|
|
Perl 5.10 new state variables comes in very handy here:
You can dynamically create this slice list using map (see Gugod's excellent answer) or a subroutine:
Update: Regarding runrig's comment... this is "one way" to make it work within a loop:
/I3az/ | |||||||||||
feedback
|
|
Python:
| |||||||||
feedback
|
|
Perl:
| |||
|
feedback
|
|
You could do a slice in Perl.
| |||
|
feedback
|
|
In Perl:
| |||
|
feedback
|
@array = qw(1 2 3 4 5 6 7 8 9);
print @array[(grep { ($_ + 1) % 3 == 0 } (1..$#array))];
| |||
|
feedback
|