Perl Primer

A list in Python is created by enclosing its elements in brackets: Elements in a list are accessed the same way elements are accessed in tuples. ... gives us the first element in the list, i.e. ‘Monday’. We could do: days[0]; to access the first element of the array days. ................
................