Thread Tupel in Perl (29 answers)
Opened by flixxflaxx at 2013-07-20 14:10

topeg
 2013-07-21 23:33
#168972 #168972
User since
2006-07-10
2611 Artikel
BenutzerIn

user image
Die Notationen habe ich nicht so übernommen denn
Python t[0] ist @t[0] in Perl
Python t[0:10] ist @t[0..10] in Perl

Was du beschreibst wäre in Python t[0:10:2] was Perl so nicht kann.

emuliert wäre es :
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
my $step=2;
my $pos=0;
while( $pos <= 10)
{
  my @list=@t[$pos..$pos+$step-1];

  # ...

  $pos+=$step;
}


Weil ich Spaß daran hatte habe ich es um dieses Feature ergänzt und auch gleich die Möglichkeit einfügt Werte zu setzen.

View full thread Tupel in Perl