Словарь Python, если не найден

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