Python 字典的setdefault()方法

Python 字典的setdefault()方法

setdefault(key[, default])


If  key is in the dictionary, return its value. If not, insert  key with a value of  default and return  defaultdefault defaults to None.

若是鍵在字典中,返回這個鍵所對應的值。若是鍵不在字典中,向字典 中插入這個鍵,而且以default爲這個鍵的值,並返回 default。default的默認值爲None
相關文章
相關標籤/搜索