Dictionary Methods

 0    12 schede    sir
Scarica mp3 Stampa Gioca Testa il tuo livello
 
Domanda Risposta
Removes all the elements from the dictionary
inizia ad imparare
. clear()
Returns a copy of the dictionary.
inizia ad imparare
. copy()
Returns a dictionary with the specified keys and values
inizia ad imparare
dict. fromkeys(keys, value)
Returns the value of the specified key
inizia ad imparare
. get(key)
Returns a list containing the dictionary's keys
inizia ad imparare
. keys()
Returns a list containing the a tuple for each key value pair
inizia ad imparare
. items()
Removes the element with the specified key
inizia ad imparare
. pop(key)
Removes the last inserted key-value pair
inizia ad imparare
. popitem(keyname, defaultvalue)
Returns the value of the specified key. If the key does not exist: insert the key, with the specified value
inizia ad imparare
. setdefault(keyname, value)
Updates the dictionary with the specified key-value pairs
inizia ad imparare
. update(iterable)
Returns a list of all the values in the dictionary
inizia ad imparare
. values()
Checks whether a dictionary possesses the give key/index.
inizia ad imparare
. has_key()

Devi essere accedere per pubblicare un commento.