Perl Tutorial - 6: Array Operations

preview_player
Показать описание
Thanks for watching!

Рекомендации по теме
Комментарии
Автор

Thanks for uploading a great playlist of tutorials! I've been looking around on YouTube for Perl tutorials but haven't been able to find a recent and well presented set! You explain things well and keep things simple, good on ya! I'll definitely be recommending you to others at Uni!

Corso
Автор

A general point on English terminology. A single character anywhere from A to Z or a to z is normally called a "letter", whereas the term alphabet refers to the whole set of letters we use for words, i.e. A to Z (or a to z). Nobody would use the term "alphabet" interchangeably for a single letter.

jvsnyc
Автор

No "strict"? No "warnings"? No "my"? No, thank you!

drumetul_dacic
Автор

Those of you have some form of error, you guys can try using the following:

#!/usr/bin/perl
use strict;
use warnings;

my @ranks= (1..10);
my @alphabets= ('a'..'z');

print "All ranks: @ranks\n";
print "All Alphabets: @alphabets\n";

print "Size of Alphabets array: $size\n";

musicoverwrite
Автор

does this a-z functiom in reverse order also ? suppose i want to write z-a ? what about that ?

urvibhatia
welcome to shbcf.ru