In Perl mache ich oft so etwas wie das hier:
$myhash{foo}{bar}{baz} = 1
Wie würde ich dies in Python übersetzen? Bis jetzt habe ich:
if not 'foo' in myhash:
myhash['foo'] = {}
if not 'bar' in myhash['foo']:
myhash['foo']['bar'] = {}
myhash['foo']['bar']['baz'] = 1
Gibt es einen besseren Weg?