setdefault(key[, default]) If key is in the dictionary, return its value. If not, insert key with a value of default and return default. default defaults to None. 若是鍵在字典中,返回這個鍵所對應的值。若是鍵不在字典中,向字典 中插入這個鍵,而且以default爲這個鍵的值,並返回 default。default的默認值爲None