Calling a list a speial type of array is a little misleading. An array is a variable, a list is not. In your example:
@list1 = (1,2,3,4); @list2 = (list1, list2, list3, list4); @arr1 = ("1" , "2", "3", "4"); @arr2 = ("arr1", "arr2", "arr3", "arr4") ;
@list1, @list2, @arr1, and @arr2, are all arrays. In all your examples the right hand side of the assignments are lists, although the list (list1, list2, list3, list4) is questionable, since it contains bare words which might be interpreteted as subroutine calls. To ensure text you can autoquote each word using qw, for example:
my @arr3 = qw(value1 value2 value3 value4);
qw returns a list (in an old release it used to return an array, and that was considered to be a bug).

Fortunately you can assign the items in a list to an array, as you have. When we do this kind of assignment it is essentially a copy of the items on the right hand side into elements in the array.

You can assign to a list on the left side, provided the list only consists of variables (although undef is a special case). For example:
my @arr5 = qw (quick brown fox); my ($speed, $colour, $animal) = @arr5;
will assign the three values to the array, then assign from the array into the three variables $speed, $colour, $animal arranged in a list.

In reply to Re: difference between array and list in perl by cdarke
in thread difference between array and list in perl by manishrathi

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.