Fügen Sie den Schlüssel hinzu, wenn nicht existiert Python
# credit to Stack Overflow user in the source link
# d is your dictionary
if key not in d:
d[key] = value
wolf-like_hunter