2 ms·
So basically Perl autovivification for Python?
by kshay 3y ago
So basically Perl autovivification for Python?
- sekia 3y agoSeems a subset of it. Practicality aside, Perl can autovivify not only hashes but also arrays: my %x; $x{foo}[1]{bar} = 42; # %x is ( foo => [ undef, { bar => 42 } ] )