Display the list of values : Hash Output « Hash « Perl






Display the list of values

   


%presidents = ( George => "Washington",
                Abe    => "Lincoln",
                Thomas => "Jefferson",
                Harry  => "Truman" );
      
# obtain the list of keys and display each key-value pair
@keys = keys( %presidents );


@values = values( %presidents );
print "\nThe values of the hash are:\n@values\n\n";

   
    
    
  








Related examples in the same category

1.Display a hash with print
2.Dump the hash
3.Output nested hash
4.Print mixed structure