how to get the length of all the values from a hash table in perl code example
Example: perl hash size
# Perl
# syntax
keys %<hash-name>
# example
my %weekly_temperature = (
monday => 65,
tuesday => 68,
wednesday => 71,
thursday => 53,
friday => 60,
);
my $size = keys %weekly_temperature;
print "Size of hash:" . $size; #[OUTPUT-->Size of hash:5]