Dictionary Methods

 0    12 フィッシュ    sir
mp3をダウンロードする 印刷 遊びます 自分をチェック
 
質問 答え
Removes all the elements from the dictionary
学び始める
. clear()
Returns a copy of the dictionary.
学び始める
. copy()
Returns a dictionary with the specified keys and values
学び始める
dict. fromkeys(keys, value)
Returns the value of the specified key
学び始める
. get(key)
Returns a list containing the dictionary's keys
学び始める
. keys()
Returns a list containing the a tuple for each key value pair
学び始める
. items()
Removes the element with the specified key
学び始める
. pop(key)
Removes the last inserted key-value pair
学び始める
. popitem(keyname, defaultvalue)
Returns the value of the specified key. If the key does not exist: insert the key, with the specified value
学び始める
. setdefault(keyname, value)
Updates the dictionary with the specified key-value pairs
学び始める
. update(iterable)
Returns a list of all the values in the dictionary
学び始める
. values()
Checks whether a dictionary possesses the give key/index.
学び始める
. has_key()

コメントを投稿するにはログインする必要があります。