Python:
dictionary[key] = value # store if dictionary[key]: # fetch ...
Perl:
my %hash; $hash{$key} = $value; # store if ($hash{$key}) { ... } # fetch