Dictionary Methods

 0    12 kartičky    sir
stáhnout mp3 Vytisknout hrát zkontrolovat se
 
otázka odpověď
Removes all the elements from the dictionary
začněte se učit
. clear()
Returns a copy of the dictionary.
začněte se učit
. copy()
Returns a dictionary with the specified keys and values
začněte se učit
dict. fromkeys(keys, value)
Returns the value of the specified key
začněte se učit
. get(key)
Returns a list containing the dictionary's keys
začněte se učit
. keys()
Returns a list containing the a tuple for each key value pair
začněte se učit
. items()
Removes the element with the specified key
začněte se učit
. pop(key)
Removes the last inserted key-value pair
začněte se učit
. popitem(keyname, defaultvalue)
Returns the value of the specified key. If the key does not exist: insert the key, with the specified value
začněte se učit
. setdefault(keyname, value)
Updates the dictionary with the specified key-value pairs
začněte se učit
. update(iterable)
Returns a list of all the values in the dictionary
začněte se učit
. values()
Checks whether a dictionary possesses the give key/index.
začněte se učit
. has_key()

Chcete-li přidat komentář, musíte se přihlásit.