Python Dictionary, wenn nicht gefunden

value = d.get(key)				# Null
value = d.get(key, "empty")		# empty
VasteMonde